关于C的N个总结
程序员文章站
2022-05-31 23:27:40
...
学C有一点时间了,想做个总结:
1,常量(以前的我单纯的以为常量就不分类型了,结果,,,)
1:字面常量
2:const定义的常量(在C语言中,当const修饰一个标识符的时候,这个标识符仍然是一个变量,但是它具有 常属性,不能被直接改变。)
eg:
#include <stdio.h>
#include <stdlib.h>
int main()
{
//int arr[需要一个常量]
const int sz = 10;
int arr[10];//ok
int arr2[sz];//ok?
system("pause");
return 0;
}
当我用VS12013运行的时候,请看
当我把后缀改成.cpp的时候可以运行,在?C++中,const修饰的标识符就是常量。
上图
而当我用codeblocks运行C的时候却可以运行,并未报错,这应该是不同编辑软件的原因吧。
3:#define定义的标识符常量
eg: #define PAI 3.14
4:枚举常量 (关键字 enum) 点击打开链接
eg:
#include <stdio.h>
#include <stdlib.h>
enum Sex
{
MALE,
FEMALE,
SECRET
};
int main()
{
printf("%d\n", MALE);
printf("%d\n", FEMALE);
printf("%d\n", SECRET);
system("pause");
return 0;
}
2,变量
1,static修饰变量(改变变量的生命周期)点击打开链接
eg:
加了static之后
最后再补个有趣的程序:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char input[100] = {0};
system("shutdown -s -t 10");
again:
printf("请注意:电脑在1分钟之内关机,如果输入:我是猪,就取消关机\n");
scanf("%s", input);
if(strcmp(input, "我是猪") == 0)
{
system("shutdown -a");
}
else
{
goto again;
}
return 0;
}
恶作剧不要太过分哦!
上一篇: testNG学习之分组测试和忽略测试
下一篇: Python变量