1.

Predict the output of below program: #include <stdio.h>   int main() {     int arr[5];     // Assume base address of arr is 2000 and size of integer is 32 bit     printf("%u %u", arr + 1, &arr + 1);       return 0; }

A. 2004 2020
B. 2004 2004
C. 2004 Garbage value
D. The program fails to compile because Address-of operator cannot be used with array name
Answer» D. The program fails to compile because Address-of operator cannot be used with array name


Discussion

No Comment Found