1
This recursive function should calculate the multiplication of two integers but it is always returning +1 in the result, someone can help me?
int multiplic(int m1, int m2){
if(m2==0){
return 1;
}
return m1 + multiplic(m1,m2-1);
}