C 的 "hello, world!"
by 高顯忠, 2010-11-10 08:14, Views(2002)
#include <stdio.h>
#include <stdlib.h>
int main(void)
{
printf("hello, world!\n");
system("pause");
return 0;
}