A
"Hello World" program is a computer program which prints out "Hello World!" on a
monitor. It is used in many programming languages for teaching .
Such a program is typically one of the simplest programs possible in most computer languages. It is often considered to be common among programmers for people attempting to learn a new programming language to write a "Hello World!" program as one of the first steps of learning that particular language. Some are surprisingly complex, especially in some (GUI) contexts, but most are very simple, especially those which rely heavily on a particular
cmd ("shell") to perform the actual output. In many cases, the text may be sent to a (LCD), or the message may be substituted by some other appropriate signal, such as an
led being turned on...
You should now start with basic C program in which we will print "hello world"...Try to understand the coding....
While small test programs existed since the development of programmable
computers, the tradition of using the phrase "Hello world!" as a test message was influenced by an example program . The example program from that book prints "
hello, world" (without capital letters or exclamation mark), and was inherited from a 1974
laboratory BELL.#include
int main()
{
printf("hello, world");
return 0;
}
No comments:
Post a Comment