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 / shankar
Multiple declaration for 'sun'
An error comes!!!!!!
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what is bit rate & baud rate? plz give wave forms
What is I ++ in c programming?
Write program to remove duplicate in an array?
What is the use of pragma in embedded c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
How is = symbol different from == symbol in c programming?
Explain how does flowchart help in writing a program?
write a program to find out prime number using sieve case?
What are bitwise shift operators in c programming?
What is the function of volatile in c language?
What are pointers really good for, anyway?
What is wild pointer in c?
Can we change the value of static variable in c?
What does *p++ do?
What does struct node * mean?