I have the next strange situation:
void refill (Car* car) {
    if ( car->model == "BM234" ) {
        car->fuel = 65;
    } else {
        car->fuel = 51;
    }
}
My struct Car has af field called model and it is "BM234". But the result of the comparison is car->fuel = 51((( Why two equal strings for C are not equal?
 
     
     
    