|
我的电脑新做的debian现在gcc不好用
#cat a.c
#include <stdio.h>
main()
{
printf("Hello World!\n");
}
# gcc -o a a.c
a.c:1:19: error: stdio.h: 没有那个文件或目录
a.c: In function 'main':
a.c:4: warning: incompatible implicit declaration of built-in function 'printf'
这应该怎么解决?谢谢! |
|