
how do we start a program with C++.....a program that decrements from 225 to 0!!!!

Here is a C++ progrma that decrements the number from 225 to 0.
#include <iostream>
using namespace std;
int main() {
int i=225;
while(i>=0) {
cout << i << endl;
i--;
}
return 0;
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.