麻烦各位大神来帮我解答一下拜托了,谢谢,在线等答案。
#define PRICE 30void main()
{
int num,total;
num=10;
total=num* PRICE;
printf("total=%d",total);
}
程序出现错误:E:\程序\hello wolrd\hello wolrd.c(8) : warning C4013: 'printf' undefined; assuming extern returning int
但是也能运行这个是为什么呢? 需要在文件开头添加 #include <stdio.h>
页:
[1]