type of in cpp code example
Example 1: c++ typeof
typeof (int *)
Example 2: what type is this c++
class ClassName {
void foo() {
// here `this` has `ClassName *` type
}
void bar() const {
// here `this` has `const ClassName *` type
}
};