fork download
  1. #include <stdio.h>
  2.  
  3. hoge(n, msg)
  4. int n;
  5. char *msg;
  6. {
  7. printf("%d:%s\n", n, msg);
  8. }
  9.  
  10. int main()
  11. {
  12. hoge(42, "hoge");
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
42:hoge