1.

What will the output of the following C code ?#include <stdio.h>int main(){ int i=2, j=2; while (i+1 ? --i : j++) printf("%d",i); return 0;}(A) 1(B) 2(C) 3(D) 4

Answer»


Discussion

No Comment Found

Related InterviewSolutions