C, C++, C#
C
#include <stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}C++
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}C#
Last updated
#include <stdio.h>
int main()
{
printf("Hello world\n");
return 0;
}#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
return 0;
}Last updated
using System;
namespace HelloWorld
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}