Communicating with a computer involves speaking the language the computer understands,
which immediately rules out English as the language of communication with the computer.
However, there is a close analogy between learning English language and C language. Learning
C is much more easy and simple like learning English.
Unlike some other Programming Language , C is a free-form language. That is, the C compiler
does not care, where on the line we begin typing. While we should try to use this fact to
our advantage in devloping readable programs.
First of all, we must devlop the habit of writing programs in lowercase letters.
C programs satements are written in lowercase letters. Uppercase letters are used
only for symbolic constants.
Braces, group program statements would make the beginning and end of functions.
A proper indentation of braces and statements would make a program easier to
read and debug.
Since C is a freeform lanuage , we can group statements togeather on one line link:
main ()
{
printf("Hello! C");
}