I am trying to print numbers from 1 to 100 without using loops, using C#. Any clues?
Just LINQ it...
Console.WriteLine(Enumerable.Range(1, 100) .Select(s => s.ToString()) .Aggregate((x, y) => x + "," + y));