I want to know why, when using decltype (* pointer) - using a pointer - it defines the type of the variable as a reference, eg:
int i = 42, *p = &i;
decltype(*p) c = i;
What I want you to understand in my question is this:
Now c is a re...
asked by
17.07.2018 / 16:58