105k views
1 vote
Write a function named times_ten. the function should accept an argument and display the product of its argument multiplied times 10

1 Answer

1 vote
since you did not specify a language i am assuming C

void x10(int n){
printf("%d \\",n*10);
return;
}

User Filipe Spindola
by
6.9k points