Advertisement
onilink_

Untitled

May 26th, 2020
1,595
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. void f0() { std::cout << "f0" << std::endl; }
  2. void f1(double p1) { std::cout << "f1" << std::endl; }
  3. void f2(double p1, double p2) { std::cout << "f2" << std::endl; }
  4. void f3(double p1, double p2, double p3) { std::cout << "f3" << std::endl; }
  5. void f4(double p1, double p2, double p3, double p4) { std::cout << "f4" << std::endl; }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement