买的 C Primer Plus 上周到了,看了一周,感觉还行,因为之前接触过 JavaScript, 前面的一部分没有什么难度.弄了个 Hello World 出来,写篇文章纪念下.
这是代码.
/* C Hello World */ #include <stdio.h> #include <stdlib.h> int main(void) { int age; printf("Hello! This is my first C program!\n"); printf("Yes, and please input your age!\n"); scanf("%d",&age); printf("It seems that you are %d years old!",age); printf("And it's %d days!\n",age * 365); printf("Bye!\n"); system("PAUSE"); return 0; }
这是运行截图.
别喷我用 XP ,过段时间有空了就装 Linux (我对 Windows 应用程序开发没啥兴趣).
以上.