Language basics : comments
Comments are used for (internal) documentation of your program.
Single line comments : starts with //
Multiple line comments : starts with /* and end with */
1. Use comments efficiently: Express clearly what you want to say in minimum number of words.
2. Do not crowd the program with too many comments. For example, a comment per line.