If I want you to leave this page with only one sentence, it would be this: “The sooner you start coding, the deeper you get stuck.” When you face a programming problem, just don’t start coding the first idea that comes to your mind. Move back and look at it. …
3. Getting on the track, Variables and Constants
Here we will give a look to some data types and their uses, how data is stored and how you can access it back. When you perform operations in computer, you need to store the results somewhere, these places are known as memory locations. Each memory location has its own …
1. The Basics, Welcome to the world of programming
This is where we began our learning. First we’ll give a look to different terminologies so that the things become easier. Following are the definitions that one should understand before he starts to program. Binary Language: Computer is digital machine and therefore has its own language, better known as binary …
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 →