fork download
  1. #include <stdio.h>
  2. int main (void)
  3. {
  4. char s[] = "Ciao amore";
  5. printf ("%s... Ti %s.\n", s, "voglio tanto bene");
  6. return 0;
  7. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
Ciao amore... Ti voglio tanto bene.