Answers for "loop execution decending order in c"

C++
0

loop execution decending order in c

#include <iostream>
using namespace std;
int main() 
{
    for(int i=10;i>0;i--)
    {
        cout<<i<<" ";
    }

    return 0;
}
Posted by: Guest on April-23-2022

Code answers related to "loop execution decending order in c"

Browse Popular Code Answers by Language