2. Getting your hands dirty, Your First Program.

We learned a bit about programming in C in our previous post, lets get started with some coding, here we shall learn how to print something on our screens. Consider the following code. </p> <p>#include <stdio.h><br /> #include <conio.h></p> <p>void main()<br /> {<br /> printf("HELLO WORLD");<br /> getch();<br /> }</p> …

Continue Reading →