1.

Which of the following is the correct output for the program given below?
#include <stdio.h>
int main ( )
{
int a = 9, b, c;
b = --a;
c = a--;
printf ( "%d %d %d n", a, b, c);
return 0;
}

A. 9 8 8
B. 9 8 7
C. 8 8 7
D. 7 8 8
E. 7 7 8
Answer» E. 7 7 8


Discussion

No Comment Found

Related MCQs