How important is structure in life?
No Answer is Posted For this Question
Be the First to Post Answer
For what purpose null pointer used?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Write a program to print fibonacci series using recursion?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
how can I convert a string to a number?
Is there a built-in function in C that can be used for sorting data?
Give a method to count the number of ones in a 32 bit number?
What are macros in C?
C program code 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
List some of the static data structures in C?
Is there a way to jump out of a function or functions?
what are enumerations in C