Question:What will be printed on the standard output as a result of the following code snippet?void main() { int arr[5]={1,2,3,4,5}; printf("%d\n", *(arr+4)); }
void main() { int arr[5]={1,2,3,4,5}; printf("%d\n", *(arr+4)); }
A 1 B 2 C 4 D 5 E Cannot be determined
+ AnswerD
+ Report