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

333
000
433
Garbage Value
444

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

All of these
Takes care of macros
Takes care of conditional compilation
Acts before compilation
Takes care of include files

ANSWER DOWNLOAD EXAMIANS APP