Computer Science, asked by sambhajijadhav9777, 9 months ago

2. Write the output of following C Program
#include <stdio.h>
int main()
inti = 2;
int j = ++i+i;
printf("%d\n", j);
}​

Answers

Answered by tanuks324
2

Answer:

output of this program will be 3

Similar questions