fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Answers were Sorted based on User's Feedback
application of static variables in real time
How to write a C program to determine the smallest among three nos using conditional operator?
In a header file whether functions are declared or defined?
What is dynamic memory allocation?
What is the process of writing the null pointer?
Why does not use getgh(); and <conio.h> in c language.
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
what is the flow of execution in cprogram? ex:printf();,scanf();
write a programe returns the number of times the character appears in the string
If an old women's age is the same as her three grand daughters i,mean the number of days old child=the no of weeks old child=no of months old child .The total yrs of all these ppl is 114 yrs...then how old is the old woman? the yr has 365 days..and 30 days each month.
what are bit fields in c?