C Programming and Technical Category

void fn(int);
main()
{
int n=3;
fn(n);
}
void fn(int n)
{
if(n>0)
{
fn(--n);
printf("%d",n);
fn(--n);
}
}

Read Solution (Total 6)

C Other Question

Given a string. Write a program to form a string with first character of all words write a c program for addition of two numbers, without using "+" operator?