✪ 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");
}
#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");
}