C语言怎么用goto实现循环

2024-11-15 19:58:58
推荐回答(1个)
回答1:

for ( i=0;i<10;i++ ) { ... }
等同于
i=0;
LOOP:
if ( i<10 ) {
...
i++; goto LOOP;
}