@RushikaKunni

Good content 👍👍👍

@dravid_Dx

Can you explain how it is run?

@James.Gosling

👍👍👍

@abhinaysrivastav

I hope this program will not print 0 as per the requirement

@kalyant4729

using System;

class Program
{
    static void PrintNumbers(int n)
    {
        if (n > 100) // Base case: Stop when n is greater than 100
            return;

        Console.WriteLine(n);
        PrintNumbers(n + 1); // Recursive call with incremented value
    }

    static void Main()
    {
        PrintNumbers(0); // Start the recursion with 1
    }
}