C Programming
What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);}

5
Garbage Value
0
None of these
6

ANSWER DOWNLOAD EXAMIANS APP

C Programming
"My salary was increased by 15%" Select the statement, which will EXACTLY reproduce the line of text above.

printf("My salary was increased by 15'%'!");
printf("My salary was increased by 15/%!");
printf("My salary was increased by 15%%!");
printf("My salary was increased by 15%!");

ANSWER DOWNLOAD EXAMIANS APP