忍者ブログ

いけいけ機械学習

統計、機械学習、AIを学んでいきたいと思います。 お役に立てば幸いです。

C言語 配列の初期化と出力

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番目の要素は、1
1番目の要素は、2
2番目の要素は、3



PR



C++ 定数

1.文法

定数は
const
を利用するみたいです

2.サンプル

#include <iostream>
using namespace std ;
 
const int MAX_NUMBER = 10 ;
 
int main(){
   cout << MAX_NUMBER << endl ;
   return 0 ;
}

3.実行結果

10
が出力されます