You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In plain C you can do something like `(test ? p1 : p2)->next = NULL` but cannot do `(test ? *p1 : *p2).next = NULL` as ternary operator does not keep the lvalue-ness of the expressions.