/* Prints numbers from 1 to n */
void
printNos(unsigned
int
n)
{
if
(n > 0)
printNos(n-1);
printf
(
"%d "
, n);
}
No comments:
Post a Comment