Computer Science, asked by rajagrawal2671, 1 month ago

What is the output of the program?
#include <iostream>
using namespace std;

int main()
{
for (int i=3; i!=0; i--)
{
cout<<i--<<" ";
}
}​

Answers

Answered by purveshKolhe
0

Answer:

Output will be:

3

2

1

0

Hope it helps you

Similar questions