fork download
  1. #include <stdio.h>
  2.  
  3. // Line 5 is for letting the statements work or else there's ann error.
  4.  
  5. int main() {
  6.  
  7. // The printf functions do the text, the \n does extra lines!
  8.  
  9. printf("I need C tutoring guys!!!\n");
  10. printf("Can you help me?");
  11.  
  12. // Just closing off the code...
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
I need C tutoring guys!!!
Can you help me?