MCQ Practice
Single Best Answer
Topic: Operators and Enums in C Language
Q
Find the output of the following program
#include
void main()
{
int y=10;
if(y++>9 && y++!=10 && y++>11)
printf("%d", y);
else
printf("%d", y);
}
Subchapter
Operators and Enums in C Language
Action
Choose one option below