Language C Tutorial

Comments are ignored by the compiler.
You can use comments to disable certain parts of your program.

#include 
 
int main(){
  
   /* printf("%15s","right\n"); */
   printf("%-15s","left\n");
   return(0);
}
left