现在的位置: 首页 > 综合 > 正文

linux 入门 之 hello, world !

2012年12月13日 ⁄ 综合 ⁄ 共 156字 ⁄ 字号 评论关闭

 

# gcc helloLinux.c -o main

 

 

驸马:

 

#include<stdio.h>

int main(void)
{
        printf("hello , linux programming !\n");
        return 0;
}

参考:

http://www.eefocus.com/article/09-10/84246s.html

抱歉!评论已关闭.