Saturday, August 7, 2010

sTEP tHREE - fROM wHERE tO bEGIN

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;
}

Friday, August 6, 2010

sTEP tWO - tREAT pROGRAMMING aS a Game & pLAY

Before learning any language you should not have rumour in your mind that -
1) Pogramming is a master mind game and very difficult to understand.
2) Programming needs specialised knowledge.
3) Programming can be learnt only by the intelligent students securing 80% ++.

RATHER-
1) Programming has some basics which you can learn from anywhere without any coaching,with your own hardwork.
2) With a condition that you have to learn it from basics with each and every syntax's meaning clear to you.
3) AN average person can also learn programming with a point in his or her mind that computer can't understand english so,we have to program our computer to accomplish some specific task.

In the next post we will discus the basic programming language fundaas...