void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 30854enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
TCS,
4 8018int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
7 12189WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
3 16181write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
1 4464write a c program to calculate the income tax of the employees in an organization where the conditions are given as. (I.T. = 0 if income <100000 I.T = 10% if income _< 200000 it = 20% if income >_ 200000)
Consultancy, DBU, FD, JK Associates, Kobe, Satyam,
7 88830in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
3 26186
How can a program be made to print the line number where an error occurs?
What is a file descriptor in c?
I have a varargs function which accepts a float parameter?
How do you define CONSTANT in C?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What is the use of void pointer and null pointer in c language?
What are the types of bitwise operator?
difference between Low, Middle, High Level languages in c ?
explain what are actual arguments?
What are runtime error?
How can I send mail from within a c program?
What are global variables and how do you declare them?
Explain high-order and low-order bytes.
Does c have class?
In c language can we compile a program without main() function?