two_D_array

Run Settings
LanguageC++
Language Version
Run Command
#include <iostream> using namespace std; int main() { cout << "Hello World!"<< endl; int a[3][5] = {{1,2,3,4,5} , {6 , 7 , 8 , 9 , 10} , {11 , 12 , 13 , 14 ,15 }} ; int i , j ; for(i = 0 ; i < 3 ; ++i) { for( j = 0 ; j < 5 ; ++j) { cout << a[i][j] << " " ; } cout << "\n" ; } return 0; }
Editor Settings
Theme
Key bindings
Full width
Lines