Incremental variable naming convention like i, but for an inside For statement?

Posted by Fraga on Stack Overflow See other posts from Stack Overflow or by Fraga
Published on 2010-06-09T13:02:11Z Indexed on 2010/06/09 13:12 UTC
Read the original article Hit count: 178

Hi experts.

This is the example:

for(int i = 0; i < 10;i++)
{
   for(int ? = 0;? < 10 ; ?++)
   {
   }
}

I usually use an "o" for the second loop, but is there any standard out there?

ideas? Thanks.

© Stack Overflow or respective owner

Related posts about naming-conventions

Related posts about coding-standards