Can you add pointers together? Why would you?
No Answer is Posted For this Question
Be the First to Post Answer
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
Process by which one bit pattern in to another by bit wise operation is?
What functions are in conio h?
There is a 100-story building and you are given two eggs. The eggs (and the building) have an interesting property that if you throw the egg from a floor number less than X, it will not break. And it will always brake if the floor number is equal or greater than X. Assuming that you can reuse the eggs which didn't broke; you got to find X in a minimal number of throws. Give an algorithm to find X in minimal number of throws.
what is the value of b if a=5; b=++a + ++a
31 Answers Infosys, TCS, Tech Mahindra,
The difference between printf and fprintf is ?
What is the difference b/w Structure & Union?
what is difference between strcmp & palindrome?
What is the difference between malloc() and calloc()?
Explain why can’t constant values be used to define an array’s initial size?
What are the features of c language?
What is the sizeof () operator?