1,641 views
0 votes
0 votes

1 Answer

1 votes
1 votes

There is strictly no difference.

{
   auto int a;
   /* ... */
}

and

{
   int a;
   /* ... */   
}

are equivalent.

The common practice is not to put the auto specifier.

Related questions

0 votes
0 votes
2 answers
1
0 votes
0 votes
0 answers
2
1 votes
1 votes
1 answer
4