Showing posts with label C. Show all posts
Showing posts with label C. Show all posts

Friday, May 25, 2007

C++

#include

int main()
{
std::cout << "Hello, World!\n";
}

C#

using System;
class HelloWorld
{
static void Main()
{
System.Console.WriteLine("Hello, World!");
}
}

C -ANSI

#include

main()
{

printf("Hello, World!");

}