写C代码:
1.创建工程
// C代码 .c 源文件 .h 头文件head
2.添加源文件 test.c
3.写代码
//包含一个叫stdio.h的文件 std-标准 standard input output
#include <stdio.h>
int main()//主函数-程序的入口-main函数有且仅有一个
{
//这里完成任务
//在屏幕上输出hello world
//函数-print function - printf - 打印函数
//库函数-C语言本身提供给我们的函数
printf("hello world\n");
return 0;
}
来源:51CTO
作者:mb602b0ed0c2618
链接:https://blog.51cto.com/15107022/2629883