//A comment



/*

A commented out area

*/

Commenting out section of code

Commenting out code and avoiding error: “/*” within comment [-Werror=comment]

This is one of those annoying compiler warnings that will be treated as an error if -Werror is set.

Bewst solution is to not use /* */ to comment out sections of code and comments, and instead use #if 0 #endif:

#if 0 //Disabling this section of code

	//Everthing in here is ignored


#endif