fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4.  
  5. /* this is a block comment,
  6. it may extend
  7. over
  8. many lines*/
  9.  
  10. /* this is another comment */
  11. printf("Hello World\n"); /*this is an in,ine comment */
  12.  
  13. return (0);
  14. }
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Hello World