0
Can you tell whats wrong with this code in language C
Int multiply (int a, int b) { return a b;}
5 Respostas
+ 4
You forgot the multiplication operator *
+ 2
int multiply(int a, int b) {
return a*b;
}
+ 2
Maybe you could use the multiplication operator (*) to actually multiply these numbers :)
int multiply (int a, int b) {
return a * b;
}
+ 2
In return statement u missed * multiplication symbol