#include <stdio.h>
int main()
{
printf("hello \n");
printf("he he\n");
return 0;
}
1.int main() : main函数是一个程序的入口并且一个程序中只能有一个main函数.
2.return 0 :"0"代表返回的是一个整数值,为什么用0不用1.2.3.4... 大众约定俗成的,不要杠.
3.printf("hehe\n") :①"hehe\n"是字符串,说明打印的是字符串.②printf:库函数,专门用来打印数据的,所以程序开头引用了<stdio.h>,printf就在该文件中.
4:stdio: std -标准 i-input o-output
5:快捷键:注释 ctrl+k+c 取消注释 ctrl+k+u
6.数据类型:代表向内存申请空间 例:
int age = 20; //向内存申请4个字节存放“20”
char //字符数据类型 1字节
short //短整型 2字节
int