Answers for "example of 2 d array"

C++
8

two d array

int a[2][3]= {
        {1, 2, 3},
        {4, 5, 6}
    };
    
    cout << a[1][1]; // Output is 5
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language