What is meant by formatted output? Mention the output of the following commands.

b) What is meant by formatted output? Mention the output of the following commands.
int n = 28;
i) printf ( “% 5d,”n);
ii) printf ( “%+5d”, n);
iii) printf ( “%+5d”, n);
c) Write a recursive function to compute factorial of a number.


Leave a Reply