c logical operators code example
Example 1: how to use ? in c
result = comparison ? if_true : if_false;
Example 2: and statement c
if(thing > a && thong == 1){
continue...
}
result = comparison ? if_true : if_false;
if(thing > a && thong == 1){
continue...
}