2017.7.10
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017.7.10相关的知识,希望对你有一定的参考价值。
一、32个关键词
cuto break case char const continuse default do
double else enum extern float for goto if int
long register return shrt signed sizeof stastic struct
swich typedef unsigned union void volatile while
二、简易程序
#include<stdio.h>
int main(void)
{
printf("hellow world\n");
return 0;
}
三、数据类型()
1、整数 3、字符(char)
整型int 短整型short int 长整型long int 单个字符 字符串(一系列字符的组合)
2、浮点数(实书) 4、复合数据类型
单精度float 双精度double 结构体 枚举 共用体
四、变量
#include<stdio.h>
int main(void)
{
int i;
i=3;//最终储存在内存里面,程序终止后释放3所占的空间
printf("i=%d\n",i);
return 0;
}
变量的本质是内存中的一段储存空间
变量的初始化就是赋值
以上是关于2017.7.10的主要内容,如果未能解决你的问题,请参考以下文章