edited by
570 views
4 votes
4 votes

#include <stdio.h>

int main()
{
    int arr [2][3][2]= {{{1,2},{2,3},{4,5}},{{1,2},{2,3},{4,5}}};
      printf("%d %d", arr[1]- arr[0], arr[1][0]- arr[0][0]);

       return 0;
}

edited by

Please log in or register to answer this question.

Related questions

2 votes
2 votes
0 answers
1
2 votes
2 votes
0 answers
4