I was doing a C++ test and one question puzzeled me a lot.
What is the valid target for goto
statement:
&Label;
:LABEL
<LABEL>
Label:
:Label;
I think ;
has nothing to do with goto
statement. It is a sequence point.
So the only one answer would be 5 but <>
are not permitted in the label name,
I'm very confused.
The correct syntax for the target of goto is
Though it would be more correctly to say that the target of a goto statement is a label itself because according to the C++ Standard (6.1 Labeled statement)
On the other hand the target of a goto statement is a labeled statement.:)
So in my opinion the question is not clear whether it asks about the syntax of writing a label or what is the target.:).
I suppose that the question about the syntax.