“Bedingender Operator in CPP” Code-Antworten

Bedingender Operator in CPP

//(expression 1) ? expression 2 : expression 3
//If expression 1 evaluates to true, then expression 2 is evaluated.
   int x, y = 10;

   x = (y < 10) ? 30 : 40;
   cout << "value of x: " << x << endl; //prints 40
 
   
Vivacious Vendace

Bedingter Operator in c

 // syntax
condition ? inline code for ture condition : inline code for false condition;

3 > 2 ? true : false; // return true
Code And Coins

Ähnliche Antworten wie “Bedingender Operator in CPP”

Fragen ähnlich wie “Bedingender Operator in CPP”

Weitere verwandte Antworten zu “Bedingender Operator in CPP” auf C++

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen