| 
 |  | 
| 
 ファイル名
 |  | ||||||||||||||||
| コンパイルコマンド
 実際の作業の流れ
 |  | ||||||||||||||||
/* Hello World と画面に表示する */
#include <stdio.h>
main()
{
	printf("Hello World\n");
}
/* end of hello.c */
ex. hello.c
ex. C:\Windows> Z:Z:\> cd \C

ex. Z:\C> cl hello.cソースファイル名の拡張子 .c を付け忘れないように!
ex. Z:\C> hello所望の結果が得られない場合は、ソースプログラムを修正して、やりなおす。(hello.exeが実行される)
 を押すこと。
 を押すこと。
ex. C:\Windows> Z:Z:\>
ex. Z:\> cd CZ:\C>
ex. Z:\C> cd ..Z:\>
ex. Z:\C> cd \Z:\>
ex. Z:\C> dir
ex. Z:\C> type hello.cオブジェクトファイルや実行ファイル等のバイナリーファイルは見てはいけない!