Mala caka u Cu
if (novi >= max) max=novi ;
je ekvivalentno
max >?= novi ;
jer se ovo transformise u:
max = max > novi ? max : novi ;
if (novi >= max) max=novi ;
je ekvivalentno
max >?= novi ;
jer se ovo transformise u:
max = max > novi ? max : novi ;