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));}
50, 13, 24, 50
50, 13, 24, 13
13, 13, 24, 13
50, 13, 11, 13
13, 10, 24, 50
ANSWER
DOWNLOAD EXAMIANS APP
↑