Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

loop execution decending order in c

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

    return 0;
}
 
PREVIOUS NEXT
Tagged: #loop #execution #decending #order
ADD COMMENT
Topic
Name
1+7 =