fork download
  1. void foo( int a,
  2. char* b,
  3. double c
  4. );
  5.  
  6. void bar( int a, // (IN) the A
  7. char* b, // (IN) something b
  8. double c // (OUT) the resulting value
  9. );
  10.  
  11. void foo( int a,
  12. char* b,
  13. double c
  14. )
  15. {
  16. }
  17.  
  18. void bar( int a, // (IN) the A
  19. char* b, // (IN) something b
  20. double c // (OUT) the resulting value
  21. )
  22. {
  23. }
  24.  
  25. int main(int argc, const char *argv[])
  26. {
  27. int a;
  28. char* b;
  29. double c;
  30. foo
  31. (
  32. a,
  33. b,
  34. c
  35. );
  36. bar
  37. (
  38. a, // (IN) the A
  39. b, // (IN) something b
  40. c // (OUT) the resulting value
  41. );
  42. return 0;
  43. }
  44.  
Success #stdin #stdout 0.01s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty