enum 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?
4 8179WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *
3 16307What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 19817what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);
4 6628Write a program that takes a 5 digit number and calculates 2 power that number and prints it
5 15866Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
7 12499Post New TCS C Interview Questions
Which operator is used to concatenate two strings in PHP?
What does this command do,"$more readme.txt“?
What is humoral immune response?
Name and explain some of the exclusive features which are present in vb?
What are the popular packages for animation?
hey i am doin bsc biotech and i want to do research on stem cells.....plz tell me how to go about??????
Can a solid and liquid together be possible?
What do you mean by a deadlock?
What is #include called?
What are the main advantages of integrating type adcs?
Explain the opening and closing of water to the bowl of the purifier
Interview questions for ITC Ltd for ECE stream
Describe the features and uses of the views module.
What is the use of NTP?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);