Answer:
int result=max(population1,population2);
printf("%d",result);
Step-by-step explanation:
in above result variable holds the largest value of two variables population1 and population2.Printf displays that largest value.
int result=max(population1,population2);
in above expression , right hand side we are calling max function and on the left hand side we are saving the return value of the function in result variable