陣列 陣列是一群具有相同名稱或資料型態的變數集合。 由於整個陣列中的變數均具有相同的名稱,因此若要存取陣列中的變數,我們只需要透過陣列的 index 來...
撰寫第一支程式!! #include <stdio.h> #include <stdlib.h> void main() {...
條件判斷 Decision Control Statement 為了應付程式可能遇到的各種狀況,C 提供了 if 條件判斷陳述。 情況、情境、狀態或條件的陳述...
在台科大大一的課程當了助教,也寫了不少給大一新生看的講義。這邊就分享一下當了兩年助教的講義內容給各位剛步入程式語言領域新生兒們~。 What is Progra...
In this series, I want to introduce some concepts of the C programming language...
In this part, I will compile a simple program called hello_world.c, and describe...
Today I will introduce the order of compiling. First of all, type the command be...