C语言教程(三)

基础普及

主要普及c语言的基本语法,本文默认初看的人啥也不懂,如果有编程基础请略过

hello word

下面来仔细看一下c编辑器默认给我们生成的代码

#include 

int main () { //这是mian函数
printf("hello word\n");//这是输出语句
return 0;
}

运行后可以在控制台看见

hello word

于是可以做以下尝试根据程序的变化来逐一了解代码的含义

  1. 注释printf(“hello word\n”);
#include 

int main () { //这是mian函数
//printf("hello word\n");//这是输出语句
return 0;
}
  1. 在第二行添加一个printf(“hello word\n”);
#include 
printf("hello word\n");
int main () { //这是mian函数
printf("hello word\n");//这是输出语句
return 0;
}
  1. 在第二行添加int main (){};
#include 
int main () {};
int main () { //这是mian函数
printf("hello word\n");//这是输出语句
return 0;
}
  1. 修改第三行int 为intt
#include 

intt main () { //这是mian函数
printf("hello word\n");//这是输出语句
return 0;
}
  1. 注释第一行
//#include 

intt main () { //这是mian函数
printf("hello word\n");//这是输出语句
return 0;
}

做完以上尝试你会发现除了第一个尝试可以正常通过编译,其他尝试是无法通过编译的

以下是每种尝试会出现的问题

  1. 你会发现程序可以通过编译,但是无法控制台输出是下面这样的

Process finished with exit code 0

//很显然没有输出 hello word
  1. 当你尝试第二个操作的时候会发现编辑器会报错
C:\main.c:2:8: error: expected declaration specifiers or '...' before string constant
printf("Hello, World!\n");
       ^
//也就是在main函数的上面不能写输出语句
  1. 编辑器会报一个这样的错误
C:\main.c:3:5: error: redefinition of 'main'
int main() {
    ^
C:\main.c:3:5: error: redefinition of 'main'
int main() {
    ^
C:\Users\likexian\CLionProjects\ke03\main.c:2:5: note: previous definition of 'main' was here
int main() {};
    ^
  1. 继续报错
C:\Users\likexian\CLionProjects\ke03\main.c:2:1: error: unknown type name 'intt'
 intt main() {
 ^
  1. 很尴尬,注释掉第一行之后程序并没有报错甚至还输出了hello word但是这是因为clion 帮助我们把c语言通过cmake打包成exe的时候默认添加了这个标准库,而正统的通过gcc编译是无法运行的。

所以可以得到以下结论

  1. printf 函数是用来在控制台输出的
  2. printf 函数不能打在函数的这个{ }符号外面
  3. 一个mian.c文件有且只能有一个main函数
  4. 函数返回的数据类型必须是定义好的
  5. printf 函数属于 #include 这个标准库

hello word2

经过上面的一系列尝试,现在已经能大概摸清楚c语言写法的基本套路了

接下来说什么呢
说几点注意事项吧

  1. c语言的写法
//当然没人要求你必须这样写main函数
int main() {
   printf("Hello, World!\n");
   return 0;
}
//你可以这样写,也可以运行成功
int main() {printf("Hello, World!\n");return 0;}
//但是这样写就得祈祷接手项目的人永远不会知道你的详细地址和电话 and Email

接下来…
先这样吧…

你可能感兴趣的:(c语言课程)