Created
July 10, 2022 01:42
-
-
Save Khuirul-Huda/2adce3e22b17f18717232ec5f478cb80 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//don't run | |
#include<stdio.h> | |
#include<iostream> | |
using namespace std; | |
int main() | |
{ | |
int dat[2][5] = {{1, 2, 3, 4, 5}, | |
{7, 9, 0, 2, 4}}; | |
for(int i=0;i<2;i++) | |
{ | |
for(int j=0;j<5;j++) | |
{ | |
cout<<dat[i][j]; | |
cout<<" "; | |
} | |
cout<<endl; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment