Skip to content

Instantly share code, notes, and snippets.

View akhanalcs's full-sized avatar

Ashish Khanal akhanalcs

  • Columbus, OH
  • 20:33 (UTC -04:00)
View GitHub Profile
@akhanalcs
akhanalcs / ReverseString.cs
Created July 31, 2017 18:40
A simple C# program to reverse a string
using System;
namespace Reverse
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Enter a number or a string");
string s = Console.ReadLine();