Computer Science, asked by Rajveraa, 10 months ago

A. What will be the output
of following code?
void main() {
int j=5;
cout<<++j<<j++<<j;​

Answers

Answered by dhanamvijay2002
0

void main() {

int j=5;

cout<<++j<<j++<<j;

Output

6 6 5

Similar questions