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

000
333
Garbage Value
444
433

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP