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 36846write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 37251C 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 19678int 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 12559Post New Wipro C Interview Questions
Like Java’s java.lang.Object class, what is the super class of all classes in Scala?
What is Harmonics how it is produced and what is the method to control the same
Why ctrl z is used?
Explain what math functions are available for integers? For floating point?
What is adt stand for?
Define the role of api server?
Can I write code for android using c/c++?
Name the unit that controls the sequential execution of instructions?
Why neutral cable carry current.
Is it worth replacing hard drive in laptop?
why do you want to join tavant technologies?
How do you check if a variable is an object
When you open a report, how many times call the fetch?
What is sizeof return in c?
How will you cancel a deployment from central admin -> solution management, if it’s stuck at ³deploying´ or ³error?