Jump to content

Hello world program

From Simple English Wikipedia, the free encyclopedia
Revision as of 15:44, 15 February 2014 by S1lver ex (talk | changes)

A Hello world program is usually a program made by computer programmers that are new to a programming language, or to test if the compiler for this language is working correctly. It will simply put the text Hello, World! on the screen. This program is available in all programming languages.[1] One way to do the Hello World program is shown below, in the C programming language.

program helloworld;
begin
     WriteLn('Hello World');
end.
#include <stdio.h>
int main(int argc, char* argv[])
{
     printf("Hello World");
     return 0;
}

References

Other websites