void product ( void )
{ int a, b, c
, result;
printf ( “Enter three integers: ”)
scanf ( “%d%d%d” , &a, &b, &c);
result = a * b * c;
printf ( “Result is %d”, result );
return result; }
Answers
Answered by
18
Answer:
please type the question correctly
Answered by
3
Answer:
void product (void)
{
int a, b, c, result;
printf ("Enter three integers: ");
scanf ("%d%d%d", &a, &b, &c);
result = a * b * c;
printf ("Result is %d", result);
return result;
}
Similar questions