Mega Code Archive

 
Categories / C Tutorial / Language
 

Using Comments to Disable

Comments are ignored by the compiler. You can use comments to disable certain parts of your program. #include <stdio.h>   int main(){       /* printf("%15s","right\n"); */    printf("%-15s","left\n");    return(0); } left