天天看點

第一個C程式

/*
*File:helloworld.c
*Function:my first C program, output "Hello world"
*Author:Howard
*Time:2012/10/14
*/

#include <stdio.h>
int main(void)
{

    printf("Hello World!\n");    

    return 0;
}
gcc -o hello_world helloworld.c
           

繼續閱讀