Let f be a variadic function:

Result f(...);

How to implement variadic function g which calls f with the same arguments as one it receives?

Result g(...) {
  // ...
}

Reply via email to