int max_of_four(int a,int b,int c,int d){
int max = a > b ? a : b;
max = c > max ? c : max;
max = d > max ? d : max;
return max;
}
so this is the code I found on net I was gonna write the greatest number what does this code mean or '?' and ':' mean?