I\'m trying to print a 2 x 3 2 d array.
this is the code i use:
#include int main(void) { int c[2][3] = {{1, 3, 0}, {-1, 5, 9}}; pri