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 44910write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43181C 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 24092int 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 17701Post New Wipro C Interview Questions
What is neutral test case?
Does every class need a constructor?
Tell us the difference between assert and verify commands?
Explain how sd and mm are connected in sap?
Why do we study data structures?
There are two nic cards on a sun server. I need to connect one nic to pupic ip and another nic to DMZ. Could you tell me how to configure step by step?
What do you mean by section, categories and content items in joomla?
Is a value in a list excel?
How many tags are defined in xhtml 1.0?
What is NGR . What is the purpose of 10 sec ,60 sec rating of NGR.
Explain a tell function in perl?
Discuss the various functions of marketing.
What component of loadrunner is used to record a script?
What does ls mean in linux?
What are the examples of the behavioral design patterns?