The code does not execute properly. Try to figure out why

int multiply(int a, char *b) 
{
return a b;
}

The code does not execute properly. Try to figure out why. c program language

Thank your kindhearted help ! the question has been solved simply by me, thank everyone!

int multiply(int a, int b) 
{
return a*b;
}

Leave a Comment