state gov UP Police Computer Operator Grade A Mock Test 2023 Programming and Data Structure Programming in C Array
Consider the following array declarations in 'C' language:
int array1[] = {2, 3);
int array2[3] = {9};
What will be the output of the following print statement?
printf(ā%d, %dā, array1[1], 2[array2]):
1
2, 0
2
3, 0
3
2, 9
4
3, 9