edited by
420 views
2 votes
2 votes

Consider the following C program:

The output produced by above C program is ________. (Assume int is of 2 bytes)

edited by

Please log in or register to answer this question.

Related questions

2 votes
2 votes
0 answers
1
4 votes
4 votes
0 answers
3
gari asked Jan 13, 2018
591 views
#include <stdio.h>int main(){ int arr [3] = {{{1,2},{2,3},{4,5}},{{1,2},{2,3},{4,5}}}; printf("%d %d", arr - arr[0], arr [0]- arr[0][0]); return 0;}