C# - Hello World Program
C# - Hello World Program. A simple program to demonstrate how to start coding in C# language, the usage of ouput statements etc.
CODE
using System;
class Program
{
public static void Main()
{
Console.WriteLine("Hello World");
Console.ReadKey();
}
}
INPUT & OUTPUT
Comments
Post a Comment