知識社群登入
C 的 "hello, world!"
by 高顯忠, 2010-11-10 08:14, 人氣(1608)
#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    printf("hello, world!\n");
system("pause");
    return 0;
}