0
I have been trying to make a program on functions to calculate the products but just doesn't seem to be working it's in C
3 ответов
+ 3
Error on line 8 in your code
printf (" the product of %d and %d is %d\n" x ,y ,product(x,y) );
You didn't put comma before 'x' in printf statement
Correct statement:
printf ( " the product of %d and %d is %d\n", x ,y ,product(x,y) );
+ 1
oohhh thta was silly . thank you for your help