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?
Answer Posted / sumit srivastava
0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
i have a written test for microland please give me test pattern
What is the use of header files?
Difference between exit() and _exit() function?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What is the use of a static variable in c?
Suggesting that there can be 62 seconds in a minute?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What is bubble sort in c?
What is anagram in c?
What is the difference between struct and union in C?
What is the difference between the local variable and global variable in c?
Explain how can I make sure that my program is the only one accessing a file?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What is the process of writing the null pointer?