What is meant by recursion?
No Answer is Posted For this Question
Be the First to Post Answer
write the program for prime numbers?
73 Answers Accenture, Aptech, Infosys, TCS,
Why is this loop always executing once?
where do we use volatile keyword?
What is the function of volatile in c language?
Does free set pointer to null?
why we need function pointers?
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is the purpose of macro in C language?
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
post new interiew question and aptitude test papers
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }