C Programming
What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);}

-1
1 -1 -1
1 -1 1
1
complier error

ANSWER DOWNLOAD EXAMIANS APP