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 bit
arr++;
printf("%u", arr);
return 0;
}
2002
2004
2020
invalid Operation with array address
This question is part of this quiz :
C Arrays