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.  
  12. printf ("Hello World \nJesus is Lord"); /* this is an inline comment */
  13. return (0);
  14. }
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
Hello World 
Jesus is Lord