c语言学习之 程序基本结构

时间:2014-04-29 19:17:50   收藏:0   阅读:457

一个最基本的C程序由五个部分组成:

  头文件  (Preprocessor commands)

  函数   (function)

  变量   (variable)

  语句块  (statement 和 expression)

  注释   (comments)

 

例如:

  

mamicode.com,码迷
#include <stdio.h>
int main(){
  /*my first c programming*/
  printf("hello,world\n");
  return 0;
}
mamicode.com,码迷

 

c语言学习之 程序基本结构,码迷,mamicode.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!