Point out the error in the following program on GCC compiler:-

<

Loading

โœช Choose the correct option.

Point out the error in the following program on GCC compiler:-

#include  
int main() {
int a=10;
void f();
a = f();
printf("%d ", a);
return 0;
}
void f() {
printf("Hi");
}

A. Error: Not allowed assignment
B. NULL
C. No error
D. None of the above