首页 > 代码库 > 一个C语言程序

一个C语言程序

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语言程序