1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int n = 15, m = 15;
if (n = 10)
m--;
printf("%d, %d", n, m--);
}

A. 15, 15
B. 14, 10
C. 10, 15
D. 10, 14
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs