解説 4−1の例題を見ると以下のようになっているで、確認しましょう
画面に Hello!! と出力する。
/*-----------------------------------------------
はじめてのプログラム
-------------------------------------------------*/
#include<stdio.h>
main()
{
printf("Hello!! \n"); /*文字の出力*/
}