C Programming
What will be the output of the following program?void main(){ int a, b, c, d; a = 3; b = 5; c = a, b; d = (a, b); printf("c=%d d=%d", c, d);}

c=3 d=3
c=5 d=3
c=5 d=5
c=3 d=5

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 increment should always be ++k .
The commas should be semicolons.
The variable must always be the letter i when using a for loop.
The variable k can’t be initialized.

ANSWER DOWNLOAD EXAMIANS APP