经过上次的分享大家安装了编译器,知道C语言是什么,我们接下来分享,C语言头文件 C语言第一个代码hello,world的敲击。
#include<stdio.h>//标准输入文件(“standand input&output")标准输入输出 int main()//主函数不管有多少行代码,一律通这个位置开始执行,main函数是C语言唯一的主函数 { printf("hello,world\n");//printf是输出打印函数 调用stdio.h文件方可使用 return 0;//返回值是0代码结束标志 }
还记得我们说过的 printf的这个库函数是负责打印的 那很显然这个代码的结果是hello,world
那我们打印多个hello,world怎么实现呢?
答案是多使用几次printf函数呗 那代码就是这个样子的
#include<stdio.h> int main() { printf("hello,world"); printf("hello,world"); printf("hello,world"); printf("hello,world"); printf("hello,world"); printf("hello,world"); return 0; }
那结果是什么呢?答案是不是正确呢?我们希望在屏幕上打印6个hello world 但是结果呢?
一些动手能力强劲的少年 我想已经计算出结果了 看图:
但可是这不是我们想要的结果 这是什么呢?大家想想我们平时在敲微信 是不是一行敲满了 我们就需要换行 C语言怎么换行呢?
C语言需要换行的话 我们需要用到一个字符 \n代表是换行的意思 在任意位置加上我们的斜杠n 他都会自动换到下一行去
#include<stdio.h> int main() { printf("hel\nlo",world); printf("he\nelloworld0; printf("hello,world\n"); return 0; }
这样的就成功了 完成换行了
总结 我们学会的头文件是什么 mian函数 和printf的库函数
一个代码必须有头文件 如果没有头文件 就好像你偷不打招呼借走别人笔 main函数是老大 所有函数必须通过mian函数开始 printf库函数是输出函数 打印函数 。
这里我们的printf的函数输出的格式
printf(“点赞\n评论\n转发\n);