Answers for "array 2 d"

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

Code answers related to "array 2 d"

Browse Popular Code Answers by Language