Calculate 1*2*3*____*n using recursive function??
No Answer is Posted For this Question
Be the First to Post Answer
String concatenation
What are the difference between a free-standing and a hosted environment?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
how can write all 1to 100 prime numbers using for loop,if and break ?
Linked lists -- can you tell me how to check whether a linked list is circular?
Write a program to swap two numbers without using the third variable?
what is the difference between. system call and library function?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
21. #define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }
player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
what is c language.