parameters_hint1.cpp 80 B

12345678
  1. void foo(int x, char y);
  2. void bar()
  3. {
  4. foo();
  5. foo(123, 'b');
  6. foo(
  7. }