1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int k = 3;
int k = k++ + k;
printf("%d n", k);
}

A. 3
B. 4
C. 5
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs