what is the between in writing a loop by branching jump statement and a normal loop i.e for example
main()
{
int i=0;
while(i<9)
{
//do something
i++;
}
and
main()
{
int i=0;
label:
//do something
i++;
if(i<9)
goto label;
}
is the performance of both of them are equal?