Point out the error in the following program on GCC compiler:-
<
![]()
Practice Functions –
Point out the error in the following program on GCC compiler:-
#include<stdio.h>
int main() {
int a=10;
void f();
a = f();
printf("%d
", a);
return 0;
}
void f() {
printf("Hi");
}