C Programming
Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);}

None of these
0 1 2 3
1 1 2 3
0 1 2 2
1 1 2 2

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

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

ANSWER DOWNLOAD EXAMIANS APP