#include <iostream> #include <conio.h> using namespace std; main() { int deneme[3][2]={{1,2},{5,6},{8,9}}; int x,y; cout << "bu dizinin elemanlari n"; for(x=0;x<3;x++) { for(y=0;y<2;y++) { cout << "[" << x << "][" << y << "] :"; cout << deneme [x][y] << "n"; } } getch(); return 0; }