G
gk
code-1:
-------------
one:
for(int k=0;k<3;k++)
{
//blah
}
code-2:
-------------
one: for(int j=0;j<3;j++)
{
//blah blah
}
does code-1 and code-2 are same ?
please note the difference of positioning of label "one".
-------------
one:
for(int k=0;k<3;k++)
{
//blah
}
code-2:
-------------
one: for(int j=0;j<3;j++)
{
//blah blah
}
does code-1 and code-2 are same ?
please note the difference of positioning of label "one".