Computer Science, asked by amitrobotic, 16 days 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 lolsw4442
1

Explanation:

for(int i=3; i!=0; i--)

{

cout<<i--<<" ";

}

}

Similar questions