Incredibuild Acquires Garden to Accelerate the Entire CI Pipeline. Together, we’ll speed up DevOps workflows, helping teams build, test, and deploy faster than ever. Read More

Having Fun With C++ [Quiz Series- Part 1]

Quiz Series- Part 1

Joseph Sibony

reading time: 

1 minute

While C++ is always fun (except for C++ build times, of course), there are moments where we really get to have a blast. For me, the following C++ quiz is one of these moments. I’m not sure what did it for me. Was it the thrill of solving a challenge, or just the chance to play around with the language like a kid.

I hope you’ll have as much fun as I had.

Thanks to Anders Schau Knatten from CppQuiz for creating this quiz!

The Quiz!

#include <iostream>

template<class T>

void f(T) { std::cout << 1; }

template<>

void f<>(int*) { std::cout << 2; }

template<class T>

void f(T*) { std::cout << 3; }

int main() {

    int *p = nullptr; 

    f( p );

}

Hint:

Before I spoil everything and reveal the answer,  here’s a nice hint for you:

A declaration of a function template being explicitly specialized shall precede the declaration of the explicit specialization. During overload resolution, only the base function templates are considered, not specializations.

Know the answer?

Send it to us at [email protected]. The winners will be announced on our social pages.

speed up c++

Table of Contents

  1. The Quiz!
  2. Hint:
  3. Know the answer?

Shorten your builds

Incredibuild empowers your teams to be productive and focus on innovating.