Cheqq 3tdy Cuise SollbcNew Ta Quaarin Completion Status 123
Cheqq 3t.dy Cuise: SollbcNew Ta Quaarin Completion Status: 123 46 7L1 10 13 14 154 16 17 13 19 201 21 22 2324 25 265 27281 2230 3321 33 34 35 3 37538 3941 431 41 42 43 Motng oo :not eraesdon will save this response. Quaston 11 o41 Question 11 shat iatn line ot cutpur trom the tlling shot program retorn 12 dosens e have GD total eggs 10-17/2017
Solution
#include<stdio.h>
int Mqqcount( int dozens) //(int 3)
{
return 12*dozens; //12* 3 =36
}
int main(void)
{
int d=3;
int dozens=5;
int neggs;
neggs=Mqqcount(d); //Passing the d=3 to the Mqqcount method
printf(\"we have %d total eggs.\ \",neggs);
return 0;
}
Output:
we have 36 total eggs
Hope this will helps you Thank you.