Tips for software Programmer
Today in India lot of students hope to become good programmer so I am sharing some tips which is helpful in writing programme in any type of language like c, c++, Java, PHP and .Net etc.
Tips are as follows.
1. Start your programme always with comments like name of programe, purpose and date of code creation.
2. Put comments on each step which is important and easy to understand for others also.
3. Put indentation after looping statement and if else condition.
4. Do not use keyword as a variable name.
5. Use variables name meaningful like if you want to write variable for name of student then you should write variable as StudentName.
6. Use same format type for all variable like if you use first letter of variable as capital letter then keep this thing with other variable also.
7. Keep your programme in proper folder to get easily when you want to open your programme next time.
8. Try to reduce your code for same output e.g. you do not need to write add function more than once if its result is same.
9. Put space between ending of each fuction.
10. Keep discussion with other programmer.