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