初识
//std-标准(standard) - i -input -o - output标准输入输出
#include <stdio.h>
int main()//主函数-程序得入口,main函数有且只有一个
{
//这里完成任务
printf("hello world!");
//printf()是一个函数,打印函数
//库文件-C语言本身提供给我们使用得函数
//别人的东西,打招呼
//#include<>
return 0;
}
数据类型
#include <stdio.h>
//char -字符类型
int main()
{
char ch = 'A';
printf("%c",ch);
//%c --以字符的形式输出ch变量
//%d --打印整型十进制数据
//%f --打印浮点数-小数
//%p --打印地址
//%lf --double
return 0;
}
变量
#include <stdio.h>
int a = 100;
//全局变量
int main()
{
int a = 10;
//局部变量
printf("a = %d",a);//输出的是局部变量
}