Learn C++ features with digital flashcards!

Abbreviated function template

Create a function that accepts a parameter of any type without the keyword template.

Solution

void f(auto b) {
}

Links

int main() { return 0; }
Got It No Clue