I\'ve always wondered how to write the \"A ? B : C\" syntax in a C++ compatible language.
\"A ? B : C\"
I think it works something like: (Pseudo
simply you can write this as
C=(A>B)?A:B;
THIS IS SAME AS:
if(A>B) C=A; else C=B;