Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why break cannot be used with ternary operator?

Tags:

c

break

ternary

while(*p!='\0' && *q!='\0')
{
        if(*p==*q)
        {
               p++;
               q++;
               c++;
        }
        else
        break;
}

I have written this using ternary operator but why its giving error for break statement?

*p==*q?p++,q++,c++:break;

gcc compiler gives this error: expected expression before ‘break’

like image 625
Shubham S. Naik Avatar asked Dec 11 '22 16:12

Shubham S. Naik


1 Answers

When you use a ternary operator, it is not like an if. The ternary operator has this form:

(condition ? expression_if_true : expression_if_false);

Those two expression must have the same type, otherwise that makes nonsense.

And as Thilo said, you cannot use statement in this operator, only expression. This is because the whole ternary operator must be an expression itself, depending on the condition.

like image 85
Boiethios Avatar answered Dec 28 '22 08:12

Boiethios