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 31307enum 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 8311int main() { int x = (2,3,4); int y = 9,10,11; printf("%d %d",x,y); } what would be the output?
7 12669WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
3 16425write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
1 4631write 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 89343in 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 26474
What is the use of sizeof () in c?
What is else if ladder?
What does the function toupper() do?
What is indirection? How many levels of pointers can you have?
What should malloc() do?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Do you know the use of fflush() function?
Where in memory are my variables stored?
Which node is more powerful and can handle local information processing or graphics processing?
Explain how to reverse singly link list.
What is array of pointers to string?
What is hashing in c?
Describe explain how arrays can be passed to a user defined function
Explain what is the advantage of a random access file?