fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
Answers were Sorted based on User's Feedback
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the difference between typedef struct and struct?
What is difference between structure and union?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
what is the function of void main()?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What is C language Terminator?
How can I swap two values without using a temporary?
What are volatile variables in c?
Read two numbers from keyboard and find maximum of them?