fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Answers were Sorted based on User's Feedback
Explain output of printf("Hello World"-'A'+'B'); ?
What is a Genralised LInked List?? Please give a detailed explation of it..
What is difference between Structure and Unions?
When we use void main and int main?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
How to declare a variable?
How can you find the day of the week given the date?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
What is a newline escape sequence?
Explain the difference between ++u and u++?
what is data structure.in linear and non linear data structures which one is better?Explain
a simple c program using 'for' loop to display the output 5 4 3 2 1