C语言源程序入门,hello world!
第一行:预处理阶段进行处理
第二行:main函数,C语言源程序的入口,也是读代码的开端
c
#include <头文件> 头文件一般文件名后缀为:.h
int main() {
程序代码
return 0;
}
C语言入门,hello C language.
printf()
函数从stdio.h头文件中进行调用,已经实现,直接调用。
cpp
#include<stdio.h> //头文件,standard input & output
//#include<string.h> //预处理环节
//#include<algorithm> //c++头文件 ,sort,merge
/* 多行注释
功能:C语言程序语法入门
时间:2024年9月14日;2024年9月25日
地点:腾讯会议376-773-676;贤者楼129
作者:LChen
*/
// 单行注释
// \n :换行
// \t : 缩进
int main() // C语言程序的入口main函数,return 0;
{
printf("Hello, world!\n"); //注释
printf("Hello, world!\n"); //注释
printf("*\n");
printf("**\n");
printf("***\n");
printf("****\n");
printf("*****\n");
printf("****\n");
printf("***\n");
printf("**\n");
printf("*\n");
return 0;
}
输出hello world。
printf函数引号包含什么内容,即可打印至电脑屏幕