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 44523write a C code to reverse a string using a recursive function, without swapping or using an extra memory.
9 42742C 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 23855int 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 17300Post New Wipro C Interview Questions
How to retrieve data from database in wpf?
What is the use of subgrids?
How do I manage a queue to view and delete specific messages? : BEA Weblogic
What is a HTML helper?
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
What is the use of index in sql?
What is hibernatetemplate?
How to get only zero byte files which are present in the directory?
Difference between ActiveX Exe and Dll.
What Time Neede to Upload Master Data and Trasaction Dat From Non SAP Systum to SAP Sys. through LSMW Tool ?
When should you make a function static?
What's the usage of webdynpro component controller?
How to insert a large table in word?
Why is vlookup showing na?
What is a bean in spring?