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 44653write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 42906C 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 23931int 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 17447Post New Wipro C Interview Questions
What security levels are assigned to users?
What is the purpose of node.js module.exports and how do you use it?
what is the prinsiple of dc motor and construction and working ,application of dc motor.
Discuss the tension between accuracy and interpretability.
What is the purpose of branching in GIT?
Which is better access or excel?
Can you explain difference between data modeling and database design?
how to convert the data from HTML file to SAS dataset?
What is the functionality of a message listener in the context of jms?
What is union transformation?
What is parse checking? : bo designer
What is the scripting language used in linux operating systems?
How can you restore a redirected standard stream?
What are the standard properties?
What is the difference between persist and save in hibernate?