Point out the error, if any in the while loop(on G

Loading

Choose the correct option.

Point out the error, if any in the while loop(on GCC compiler).

#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