English, asked by nayanashetty916, 5 months ago

What will be the output of below code fragment:
void f (int n)
{
if (n <=1) {
printf ("%d", n);
}
else {
f (n/2);
printf ("%d", n%2);
}
)
f(273);​

Answers

Answered by Atsatho
0

Answer:

what should I suppose to do?

Similar questions