C Programming
What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));}

433
333
444
Garbage Value
000

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