Answer:
C
Step-by-step explanation:
Multiples of 4: 4,8,16,20,24,28,32,36,40,44,48,52,56,60
Multiples of 15: 15,30,45,60
Th smallest number that they both can multiply to is 60
Answer:
If only the fittest survive in certain enviorments other animals have to evolve to live in different places
Step-by-step explanation:
Hello,
function minmax(int p1,int p2,int p3, int adr_big, int adr_small)
{ int mini=p1,maxi=p1;
if (p1>p2) {mini=p2;}
else {maxi=p2;};
if (p3>maxi) maxi=p3;
if (p3<mini) mini=p3;
*adr_big=maxi;
*adr_small=mini;
};
// main
int a=31,b=5,c=19,big,small;
minmax(a,b,c,&big,&small);
the answer is 60 :) good luckStep-by-step explanation: