fork download
  1. #include <stdio.h>
  2.  
  3. //Single Line Comment
  4.  
  5. int main()
  6. {
  7. /*
  8. This is a Multiline Comment
  9. which spawns many lines.
  10. */
  11.  
  12. printf ("You should comment your code.\n");
  13. return 0;
  14. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
You should comment your code.