fork(1) download
  1. /*
  2.  * Ciao mondo!
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. /* La funzione main() viene eseguita automaticamente
  8.   all'avvio. */
  9. int main (void)
  10. {
  11. /* Si limita a emettere un messaggio. */
  12. printf ("Ciao mondo!\n");
  13.  
  14. /* Attende la pressione di un tasto, quindi termina. */
  15. getchar ();
  16. return 0;
  17. }
Success #stdin #stdout 0.02s 1724KB
stdin
Standard input is empty
stdout
Ciao mondo!