9what is the output of this program
C (Programming Language)
Q69. 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
int a=20, b=10;
int f1(a) {
return(a*b);
}
main() {
printf("%d", f1(5));
}