MCQ Practice
Single Best Answer
Topic: Operators and Enums in C Language
Q
Identify the correct output of the following code:
#include
void main()
{
int w=10, x=5, y=3, z=3;
if( (w < x ) && (y=z++) )
printf("%d %d %d %d", w, x, y, z);
else
printf("%d %d %d %d", w, x, y, z);
}
Subchapter
Operators and Enums in C Language
Action
Choose one option below