#include int main(void){ int m[2][2]={ {1, 2}, {3, 4} }; printf("%d\n", m[1][0]); return 0; } /* [jaagup@minitorn c]$ ./a.out 3 */