【Poshao Liu】評論
A goto statement in C programming language provides an unconditional jump from the goto to a labeled statement in the same function.NOTE: Use of goto statement is highly discouraged in any programming language because it makes difficult to trace the control flow of a program, making the program hard to understand and hard to modify. Any program that uses a goto can be rewritten so that it doesn't need the goto.Syntax:The syntax for a goto statement in C is as follows:C語言也有gotogoto label;...label: statement;考選部答案是 ...
【yakevinya不放手直】評論
建議答案修正為C
【【站僕】摩檸Morning】評論
原本答案為D,修改為C