| |
Answer/Explaination
:
Compiler error: Undefined label 'here' in function main
(Exp):
Labels have functions scope, in other words The scope of the labels is
limited to functions . The label 'here' is available in function fun()
Hence it
is not visible in function main.har
|
|