I am using the ? operator and i want to express the following
(a > b) ? (max = a) : (); // basically i want expression after `:` to be null
If i leave empty brackets after : the compiler complains in-correct syntax. What is the correct syntax for leaving expression after : empty?


ifstatement then? – Rapptz Jan 31 at 4:22ifas has been suggested. – mrunion Jan 31 at 4:23?:, but with no third term, try&&:(a>b)&&(max = a);– Robᵩ Jan 31 at 5:51NULLcan be converted to the same type asmax. So ifmaxis aCMyFrobThing, you'll get an error. – ta.speot.is Jan 31 at 6:46