1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int p = 11, q = 12, r = 13, s = 14, t;
t = r + s = q * p;
printf("%d, %d n", t, s);
}

A. 11
B. 12
C. 13
D. 14
E. Syntax error
Answer» F.


Discussion

No Comment Found

Related MCQs