C# for loop Edit

Rakesh Kumar Sutar | 11 January 2021 | 1136

Program

using System;

namespace Hello_world
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 0;
            for(int b=10; b>a;b--)
            {
                Console.WriteLine("    "  b);
            }
        }
    }
}

Output