What do you mean by Recursion Function?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int age; float ht; printf("Enter height and age"); scanf("%d%d",&height,&age); if((age<=20)&&(ht>=5)) {printf("She loves you");} else {printf("She loves you");} }
progrem to generate the following series 1 12 123 1234 12345
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
Program to find the value of e raised to power x using while loop
How does the assert() function work?
how to swap two nubers by using a function with pointers?
What is boolean in c?
How to removing white spces in c programming only bu using loops
Tell me what is null pointer in c?
How do we print only part of a string in c?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }