Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
int main() { for(;;) { printf("INSIDE FOR LOOP"); return 0; } }
printf 语句要打印多少次?为什么?
该语句打印 1 次。return退出循环和程序。
return
它永远循环,因为没有条件(通常在之间);;。
;;