C言語 定数の宣言 1001C言語/C++言語 2023年10月08日 0 1.文法const を指定して、宣言します。2.サンプル#include <stdio.h>void main(){ const int constValue = 100 ; printf("%d\n",constValue) ;}3.実行結果100が表示されます。 PR