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 45174write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 43490C 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 24275int 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 17951Post New Wipro C Interview Questions
Configuration in zend framework, application.ini file?
What is simple html?
What are the new features in java 8?
Hybris is built over the concepts of extensions. Each extension has its own data model. Any extension can use an item type from other estio extension and extend it as per requirement. Can you give an example?
How to store only time; not date and time?
What are the different font attributes?
Is it possible to compile .ts automatically with real-time changes in the .ts file?
What is full form of html and who is created this?
State the limitations where we cannot use joiner in the mapping pipeline?
What is IoT and its uses?
Describe the features and uses of the views module.
Can free-form SQL queries be used with Sqoop import command? If yes, then how can they be used?
Can an individual take two policies and claim for both of them?
What are some applications of AI in smart agriculture?
When I assigned a primary key to my table in Microsoft Access, I was expecting my (11112 to be sorted. Am I using the correct procedure?