1.

Consider the code fragment written in C below :void f (int n){if (n <=1) {printf ("%d", n);}else {f (n/2);printf ("%d", n%2);}}What does f(173) print?(A) 010110101(B) 010101101(C) 10110101(D) 10101101

Answer»


Discussion

No Comment Found

Related InterviewSolutions