int multdim0(int a, int b, int c, int d) { int f[2][2] = { { a, b, }, { c, d, }, }; return f[0][1]; }