|
ファイル名
| |||||||||||||||||
コンパイルコマンド
実際の作業の流れ
|
/* 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 C
Z:\C>
ex.
Z:\C> cd ..
Z:\>
ex.
Z:\C> cd \
Z:\>
ex.
Z:\C> dir
ex.
Z:\C> type hello.c
オブジェクトファイルや実行ファイル等のバイナリーファイルは見てはいけない!