C Programming
Identify the correct output of the following code: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);}

10 5 4 4
10 5 5 5
10 5 3 4
10 5 3 3
10 5 4 3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What's wrong in the following statement, provided k is a variable of type int?for(k = 2, k <=12, k++)

There should be a semicolon at the end of the statement.
The variable must always be the letter i when using a for loop.
The commas should be semicolons.
The variable k can’t be initialized.
The increment should always be ++k .

ANSWER DOWNLOAD EXAMIANS APP