โช 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");
}