What will be the output of the following C code?
#include <stdio.h>
int main()
{
int i = 2;
int j = ++i + i;
printf("%d\n", j);
}
#include <stdio.h>
int main()
{
int i = 2;
int j = ++i + i;
printf("%d\n", j);
}
A. 6
B. 5
C. 4
D. Compile time error
Answer: Option A
Join The Discussion