fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Answers were Sorted based on User's Feedback
who did come first hen or agg
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
What is clrscr in c?
Why is it important to memset a variable, immediately after allocating memory to it ?
how to introdu5ce my self in serco
why ordinary variable store the later value not the initial
wht is the difference between KPO and BPO ?
2 Answers Accenture, BPO, HCK, HCL, Infosys,
What is hash table in c?
Array is an lvalue or not?
How do we declare variables in c?
Program to find the sum of digits of a given number until the sum becomes a single digit
Is double link list a linear data structure? If Yes, Why?If No, Why?