void main() {
int i = 4, x;
x = ++i + ++i + ++i;
printf("%d", x);
}
void main() {
int i = 4, x;
x = ++i + ++i + ++i;
printf("%d", x);
}
What will be the output of the above code?
Reveal answer
Fill a bubble to check yourself