#include stdio.hint main(){printf(Now, the speed limit here is %i.\\n,55);printf(But I clocked you doin %i.\\n,55+15);
编程学习网为您整理以下代码实例,主要实现:使用%i输出int类型,希望可以帮到各位朋友。
#include <stdio.h>
int main()
{
printf("Now, the speed limit here is %i.\n",55);
printf("But I clocked you doin' %i.\n",55+15);
printf("DIDn't you see that %i MPH sign?\n",55);
return(0);
}