首页 > 编程语言 > 详细

c语言格式简单介绍

时间:2020-07-27 09:47:32      阅读:104      评论:0      收藏:0      [点我收藏+]
#include <stdio>
int main
{
printf("hello world");
return 0;
}

#include<stdio> :与高级c语言打个招呼
include:包含
std:standard 标准
i:input 输出
o:output 输入

int main:开始
int:整型
main:主函数

print:打印
f:function 函数
(“”):输出内容

return 0:回到整型
return:返回
0:整型值

c语言格式简单介绍

原文:https://blog.51cto.com/14885675/2513428

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!