this is my prob.
i used goto as follows
int main()
{
l1:
int x-9;
goto l1;
return 0;
}
this works as infinite unconditional loop is'nt it?
this compiles well.which means there isnt an error.
so can you explain how this variable declaration works when it get repeated.
y won't u get the error the redefinition of var x?