#include<stdio.h> 
int mai

Loading

Choose the correct option.

#include 
int main() {
void fun();
int i = 1;
while(i <= 5) {
printf("%d ", i);
if(i>2)
goto here;
}
return 0;
}
void fun() {
here:
printf("It works");
}

A. No Error: prints “It works”
B. Error: fun() cannot be accessed
C. error: label ‘here’ used but not defined”
D. No error

Leave a Comment