#include<stdio.h>
1.头文件写错了,应该是#include <stdio.h>
2.C语言main函数返回值需要int
#include <stdio.h> int main() { printf("hello!\n"); return 0; }