fork download
  1. #include <stdio.h>
  2.  
  3. #define HELLO_WORLD "hello world!"
  4.  
  5. int main(void)
  6. {
  7. printf("%s\n", HELLO_WORLD);
  8. return 0u;
  9. }
Success #stdin #stdout 0.01s 5288KB
stdin
45
stdout
hello world!