Jump to content

Hello world program

From Simple English Wikipedia, the free encyclopedia
Revision as of 21:37, 25 December 2019 by Brantmeierz (talk | changes) (Other websites: Removed broken link)

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

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

And on Pascal programming language

program helloworld;
begin
     WriteLn('Hello World');
end.

Other websites