a module called, times ten. The module should accept an Integer argument. When the module is called, it should display the product of its argument multiplied times ten.
![]() |
a module called, times ten. The module should accept an Integer argument. When the module is called, it should display the product of its argument multiplied times ten.
#include <stdio.h>
int timeten(int x);
int main(void)
{
int number = 10;
int x = timeten(number);
printf("\n\n%i\n\n",x);
}
int timeten(int x)
{
return (x * 10);
}
All times are GMT -7. The time now is 06:00 PM. |