for(x=0;x=3;x++)
Answer & ExplanationOption: [D]
The first statement of a for loop is initialize the loop counter, second is conditional statment and the third one is increment/decrement of the loop counter.
In the given expression the second statement is an assignment statement instead of condition.
So the for loop never execute.