Computer Science, asked by uniquehamdanih, 2 months ago

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 Anonymous
18

Answer:

please type the question correctly

Answered by upendra44506
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