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
0
Answer:
Output will be:
3
2
1
0
Hope it helps you
Similar questions