Consider the following array declaration in the 'C' language:

int array 1[] = {2, 3};

int array2[3]={9};

What will be the output of the following print statement?

printf(“%d, %d”, array1 [1], array2 [2]);
 

1
2, 0
2
3, 0
3
2, 9
4
3, 9

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation