c语言总结
Posted zonghanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言总结相关的知识,希望对你有一定的参考价值。
认识c语言
打印”Hello World!“
#include < stdio.h>
void main ()
{
printf("Hello World!
");
}
system("pause");,包含头文件< cstdlib>
#include < stdio.h>
#include < cstdlib>
void main ()
{
printf("Hello World!
");
system("pause");
}
我们将输入的分行
#include < stdio.h>
#include < cstdlib>
void main ()
{
printf("Hello!
");
printf("World!
");
system("pause");
}
语言入门
基本数据类型
int:整数
float:单精度浮点数
double:双精度浮点数
char:字符串
数组
以上是关于c语言总结的主要内容,如果未能解决你的问题,请参考以下文章
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段