Computer Science, asked by jaswanthrocks842, 1 year ago


The code does not execute properly. Try to figure out why.
int multiply(int* a,char* b)
{
return a,b;
}

Answers

Answered by iamkshitij
0

Answer:

it should be

return a*b;

Explanation:

and it should be int b

Similar questions