|
|
|
|
|
|
|
|
|
|
|
1. Before sitting down for coding, you must have formal or a paper-napkin design of the solution to be coded. Never start coding without any design unless the code is trivial one.
2. Good code documentation is as important as good knowledge of a programming language. Write brief logic for each major block of your code as comments in source code file itself. Its good to mention creation and modification dates of your program along-with why modification was required.
3. Maintaining versions of your program is another important task. Some present-day programming tools already have a built-in version management. Whenever you make any change to your program, they save its copy as .bak file.
My approach is to maintain 3 versions of a program. Say, I have a file program.c which is used by other project team members also. I copy this file as program.c.old as backup and make another copy as program.c.wrk where I do modifications. When modifications are successfully compiled, replace program.c with .wrk file.
You can also append a date or some explanation phrase to your program versions like program260505.c or programReadFnWrking.c .
4. If your project contains multiple source files then maintain a README file stating purpose of each source files, data files, intermediate and log files (if any). You may also mention the compilation and execution steps.
5. Ever wondered why your IF statement is not working as it should do. May be your are using single equal i.e. "=" instead of "==" in the condition check. A good approach is to write condition in reverse order. So, your condition should read something like this:
if ( 10==i) .... So, if you put single equal sign by mistake then it will be detected at compilation time only as an error.
6. While using loops and conditional statements, always first put closing braces corresponding opening braces and then write the inner statements i.e.
1) for(int i=0;i
Viruses, software failures, power failures, human errors, hard drive failures... Read More
The technological horizon has always got something new to offer,... Read More
This tip is on sharing files and folders on a... Read More
Stimulus thru Caffiene or Visual Input?It appears that the Mobi... Read More
All of us are familiar with the pyramids of Egypt.... Read More
Computers are everywhere, and vary in specification, brands, sizes, shaped,... Read More
With the new technology used to transfer information to from... Read More
How can you compare mp3 players to be sure you're... Read More
Simone is exasperated. She has to work on her university... Read More
Cameras: still known for taking pictures but assumed as digital... Read More
When you think of a help desk, what do you... Read More
If you're a computer expert, you'll probably already know about... Read More
Computers are available in different shapes, sizes and weights, due... Read More
Good Morning Mr. Sampson. Please type in you Personal Identification... Read More
A Computer in Your HandCarrying around an address book and... Read More
If you use a computer, you need to know more... Read More
Want to save money while promoting your web-based business? Of... Read More
Feeling overwhelmed in selecting a new TV? With all the... Read More
There have been some questions on anti-skip protection on mp3... Read More
One of the most common questions computer users ask is,... Read More