Pages

Monday 19 June 2017

"Hello World!" Example in 12 different languages

A programming language is a formal language that specifies a set of instructions that can be used to produce various kinds of output. Programming languages generally consist of instructions for a computer. Programming languages can be used to create programs that implement specific algorithms.Here is a list of "Hello World!" example in 12 different programming languages.

1. C

#include<stdio.h>
int main()
{
     printf("Hello World!");
     return 0;
}