Horje
double array c++ Code Example
double array c++
#include <iostream>

using namespace std;

int main()
{
    int arr[3][2]={1,2,3,4,5,6};
    for(int i=0;i<3;i++)
    {
        for(int j=0;j<2;j++)
        {
            cout<<arr[i][j]<<"\n";
        }
    }

    return 0;
}




Cpp

Related
decising how many numbers after comma c++ Code Example decising how many numbers after comma c++ Code Example
496. Next Greater Element I.cpp Code Example 496. Next Greater Element I.cpp Code Example
>> c++ Code Example >> c++ Code Example
while(n--) Code Example while(n--) Code Example
iterate over map c++17 Code Example iterate over map c++17 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7