C言語 配列の初期化と出力 1001C言語/C++言語 2023年11月25日 0 1.サンプル#include <stdio.h>int main(void){ int a[3]= {1,2,3} ; for (int i= 0; i < 3 ; i++){ printf("%d番目の要素は、%d\n" , i ,a[i]) ; }}2.実行結果次のように出力されます0番目の要素は、11番目の要素は、22番目の要素は、3 PR
C++ 定数 1001C言語/C++言語 2023年11月05日 0 1.文法定数はconstを利用するみたいです2.サンプル#include <iostream>using namespace std ; const int MAX_NUMBER = 10 ; int main(){ cout << MAX_NUMBER << endl ; return 0 ;}3.実行結果10が出力されます