What is static and auto variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
differentiate built-in functions and user – defined functions.
Explain the difference between strcpy() and memcpy() function?
What is ctrl c called?
How do I get an accurate error status return from system on ms-dos?
FILE PROGRAMMING
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
How can I do graphics in c?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Are there namespaces in c?
What is indirection?
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