fork download
  1. #include <stdio.h>
  2. void f (void)
  3. {
  4. printf ("Sono nella funzione \"%s\".\n", __func__);
  5. }
  6. int main (int argc, char *argv[])
  7. {
  8. f ();
  9. return 0;
  10. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
Sono nella funzione "f".