C Programming and Technical Programming Program

Given a string. Write a program to form a string with first character of all words

Read Solution (Total 7)

C Other Question

What happens when one types print("Hello"); instead of printf("hello");...
a.compilation error
b.Runtime error
c.Executes succesfully
d.None
void fn(int);
main()
{
int n=3;
fn(n);
}
void fn(int n)
{
if(n>0)
{
fn(--n);
printf("%d",n);
fn(--n);
}
}