[C語言程序設計_現代方法(第2版)] 第二章 C語言基本概念

第一個C程序: pun.c


#include <stdio.h>


int main(void)

{

printf("To C, or not to C: that is the question.\n");

return 0; //程序結束向系統返回值0

}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章