fn f(x)

{ if(x<=0)
return;
else f(x-1)+x;
}

Answer Posted / guest

fn(5)
i guess

Is This Answer Correct ?    16 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What's the best way of making my program efficient?

638


What is extern c used for?

581


What is difference between array and pointer in c?

552


Explain what is the best way to comment out a section of code that contains comments?

734


What is the advantage of an array over individual variables?

752






What tq means in chat?

605


What is volatile variable in c?

668


Explain the difference between malloc() and calloc() in c?

589


Why isnt any of this standardized in c?

651


What is a double c?

603


What is 02d in c?

649


What is the default value of local and global variables in c?

569


What is the general form of #line preprocessor?

596


I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.

1920


What are the advantages of union?

642