1、vim hello.c
#includ <stdio.h>
{
pirntf("helloword!");
return 0;
}
#保存能出
2、gcc -o hello hello.c 会生成hello文件
3、./hello 会打印helloword!
1、vim hello.c
#includ <stdio.h>
{
pirntf("helloword!");
return 0;
}
#保存能出
2、gcc -o hello hello.c 会生成hello文件
3、./hello 会打印helloword!