无法执行
#include<studio.h>void main()
{
printf("%d\n,sizeof(int));
}
无法执行 #include<studio.h>
void main()
{
printf("%d\n",sizeof(int));
}
双引号少了一个。。。
printf("%d\n", sizeof(int));
这样才行 #include<studio.h>这是什么鬼?用stdio.h
printf("%d\n,sizeof(int));\n后面少一个双引号 This file contains so-called function prototypes of functions such as printf(), scanf(), etc. So that compiler knows what are their parameters and return values.
*The code for the printf() , scanf() function is not in stdio.h, just the function definition. The linker later resolves this when linking to the standard library. 谢谢
页:
[1]