"Hello World" in Programming



Download 29.08 Kb.
Date28.05.2018
Size29.08 Kb.
#51773
"Hello World" in Programming


”Hello World” is readily made popular because of casual context where a quick and simple demonstration will be enough to carefully introduce the programming language to programmers who are taking new programming languages and the common knowledge to base that is through using a universal tutorial which is a “Hello World” program, we can use other words as to replace “Hello World” like using a “name, an event, a place or an object” however by doing this many people would think of other “names, events, places or objects” as well, thus by using “Hello World” you are simply confirming a new “World” of programming language and by welcoming it with a “Hello” because of taking the opportunity to study the language, means you are indeed welcomed to a new world of programming languages.

Programmers might say “Hello World” is like a baby’s first word uttering, but in the program where programmers carefully develop and create new poetry through code, programmers will always recall their first program which indeed is the “Hello World”.

Different Programming Implementations

C:

/* Hello World program */

#include

main()


{

printf("Hello World");

}

VISUAL BASIC:

MsgBox “Hello, world!”



PYTHON:

print “hello, world!”



COBOL:
* Sample COBOL program

IDENTIFICATION DIVISION

PROGRAM-ID. Hello.

PROCEDURE DIVISION

DISPLAY “HELLO WORLD!”.

STOP RUN.



ASSEMBLY:

dosseg
.model small


.stack 100h
.data
hello_message db 'Hello, World!',0dh,0ah,'$'
.code
main proc
mov ax,@data
mov ds,ax
mov ah,9
mov dx,offset hello_message
int 21h
mov ax,4C00h
int 21h
main endp
end main

Reference(s) and Book(s):

  • "Programming in C: A Tutorial" (PDF).

  • "The Programming Language B" (PDF).

  • BCPL, Jargon File

  • "Stack Overflow".

  • https://en.wikipedia.org/wiki/%22Hello,_World!%22_program

  • http://www.c-howto.de/tutorial-einfuehrung-hello-world.html

  • http://www.codingunit.com/c-tutorial-first-c-program-hello-world

  • http://www.programmingsimplified.com/c-hello-world-program

  • http://groups.engin.umd.umich.edu/CIS/course.des/cis400/c/hworld.html

  • http://www.tldp.org/HOWTO/Assembly-HOWTO/hello.html

  • http://asm.sourceforge.net/intro/hello.html

  • http://groups.engin.umd.umich.edu/CIS/course.des/cis400/cobol/hworld.html

  • http://www.thehelloworldprogram.com/python/writing-first-python-program/

  • http://www.learnpython.org/en/Hello,_World!

  • http://groups.engin.umd.umich.edu/CIS/course.des/cis400/vbasic/vbworld.html

  • http://www.vb6.us/tutorials/hello-world

  • https://msdn.microsoft.com/en-us/library/aa309383%28v=vs.71%29.aspx

  • https://msdn.microsoft.com/en-us/library/3cf7t4xt%28v=vs.110%29.aspx

  • http://stackoverflow.com/questions/1077347/hello-world-in-python

  • http://en.wikipedia.org/wiki/List_of_Hello_world_program_examples

  • http://groups.engin.umd.umich.edu/CIS/course.des/cis400/c/hworld.html

  • http://blog.thevalley.com/2013/04/cobol-my-hello-world-program/

  • http://www.thegeekstuff.com/2010/02/cobol-hello-world-example-how-to-write-compile-and-execute-cobol-program-on-linux-os/

  • A Tutorial for the Go Programming Language. The Go Programming Language. Retrieved July 26, 2011.

  • Jolif, Christophe (January 2003). "Bringing SVG Power to Java Applications". Sun Developer Network.

  • de Dinechin, Christophe (July 24, 2010). "Hello world!". Grenouille Bouillie.

  • Silva, Mike (11 September 2013). "Introduction to Microcontrollers - Hello World". EmbeddedRelated.com. Retrieved 19 May 2015.

  • George, Ligo. "Blinking LED using Atmega32 Microcontroller and Atmel Studio". electroSome. Retrieved 19 May 2015.

  • PT, Ranjeeth. "2. AVR Microcontrollers in Linux HOWTO". The Linux Documentation Project. Retrieved 19 May 2015.

  • Andersson, Sven-Åke (2 April 2012). "3.2 The first Altera FPGA design". RTE. Realtime Embedded AB. Retrieved 19 May 2015.

  • Fabio, Adam (6 April 2014). "CPLD Tutorial: Learn programmable logic the easy way". Hackaday. Retrieved 19 May 2015.


Download 29.08 Kb.

Share with your friends:




The database is protected by copyright ©ininet.org 2024
send message

    Main page