What is the output of this program?
int a=20, b=10; int f1(a) { return(a*b); } main() { printf("%d", f1(5)); }
100
200
5
50