vendredi 1 janvier 2016

C++11 auto declaration with and without pointer declarator

What's the difference between the types of bar1 and bar2?

int foo = 10;
auto bar1 = &foo;
auto *bar2 = &foo;

If both bar1 and bar2 are int*, does it makes sense to write pointer declarator (*) in the bar2 declaration?

Aucun commentaire:

Enregistrer un commentaire