C言語入門書付属のLSI-C(試食版)というコンパイラを使ってコンパイルしてみたんですが、 本の指示通りにコマンドプロンプト(ファイルを指定して実行でcmd)を起動して My first Program!と表示するサンプルプログラムをコンパイルして出来上がったEXEファイル名を入力してエンターキーを押しても 一瞬ハードディスクにアクセスするだけで何も起きず(メッセージは何も出ない)、再び入力待ちの状態になります。 しかし、commandと入力(しろとは本には書かれていない)した後でEXEファイルを実行すると正常にMy first Program!と表示されます。 これは普通でしょうか? OSはWinXPです。
(HLL) A programming language which provides some level of abstraction above assembly language. These normally use statements consisting of English-like keywords such as "FOR", "PRINT" or "GOTO", where each statement corresponds to several machine language instructions. It is much easier to program in a high-level language than in assembly language though the efficiency of execution depends on how good the compiler or interpreter is at optimising the program.
low-level language
<language> Any programming language which either is assembly language, or which is meant to be closely related to, and easily translated into, machine language. Low-level languages lack the amenities of high-level languages but it may be possible to write more efficient code in them.