What is the output for the following program
#include
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
8 44903write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43171C 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
6 24088int 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
10 17694Post New Wipro C Interview Questions
Explain a real-life use-case where Blockchain is being used?
What is indexing and its types?
Should I target one word keyword like seo? What is the logic?
Explain what are standard layouts sets in the sap script?
What are de-saturators?
What are sealed modifiers?
Define metadata?
What is personalization in abap webdynpro application?
What do you mean by cubes and olap cubes?
What is a binary file and how do I open it?
What is the difference between range & xrange? Explain?
How to change server name in sql server?
How are the elements of a 2d array are stored in the memory?
How would you implement drag-and-drop in silverlight?
Is the tag considered as a html tag?