1.

Predict the output of below program:#include <stdio.h>int main(){int arr[5];// Assume that base address of arr is 2000 and size of integer// is 32 bitarr++;printf("%u", arr);return 0;}(A) 2002(B) 2004(C) 2020(D) lvalue required

Answer»


Discussion

No Comment Found

Related InterviewSolutions