1.

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

A. 3
B. Compilation Error
C. 8
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs