C Programming
Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);}

50, 13, 24, 13
13, 10, 24, 50
50, 13, 11, 13
50, 13, 24, 50
13, 13, 24, 13

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is the right choice, if the following loop is implemented?void main(){ int num = 0; do{ --num; printf("%d", num); }while( ++num >= 0 );}

The program will not enter into the loop.
Prints the value of 0 one time only.
A run time error will be generated.
There will be a compilation error reported.
The loop will run infinitely many times.

ANSWER DOWNLOAD EXAMIANS APP