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));
}
 

A 1 

B 2 

C 4 

D 5 

E Cannot be determined 

+ Answer
+ Report
Total Preview: 519

Copyright © 2024. Powered by Intellect Software Ltd