Recent questions tagged gateit-2008

54 votes
8 answers
2
15 votes
4 answers
4
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?$010110101$...
42 votes
5 answers
10
52 votes
5 answers
12
32 votes
2 answers
13
28 votes
3 answers
21
30 votes
2 answers
30