码迷,mamicode.com
首页 > 编程语言 > 详细

一个C语言程序

时间:2017-07-16 11:14:32      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:int   编译   nbsp   exit   bsp   std   -o   gcc   stdio.h   

hello.c 代码

#include  <stdio.h>

#include <stdlib.h>

int main()

{

   printf ("hello,my world!");

   exit(0);

}

编译,运行

$gcc -o hello hello.c

$./hello

hello,my world!

$

 

一个C语言程序

标签:int   编译   nbsp   exit   bsp   std   -o   gcc   stdio.h   

原文地址:http://www.cnblogs.com/yangxuming/p/7189798.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!