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 31085enum 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 8175int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
7 12440WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
3 16307write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
1 4544write 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 89111in 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 26338
What is #line in c?
What are the salient features of c languages?
Is c easy to learn?
What are the different properties of variable number of arguments?
What is non linear data structure in c?
Which is better oop or procedural?
What is the use of pragma in embedded c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Can we change the value of constant variable in c?
i want to know the procedure of qualcomm for getting a job through offcampus
What is volatile variable in c?
How can you be sure that a program follows the ANSI C standard?
What is the data segment that is followed by c?
What is a memory leak? How to avoid it?
Can i use “int” data type to store the value 32768? Why?