> For the complete documentation index, see [llms.txt](https://cspp.csalex.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cspp.csalex.org/10.-osztaly/felteteles-muveletek.md).

# Feltételes műveletek

Alakja C++-ban

```
FELTÉTEL ? MŰVELE_1 : MŰVELET_2
              I          H
```

Például

```cpp
int main()
{
    int x = -20;
    
    cout << ((x >= 0) ? "Pozitív" : "Negatív" ) << endl;
    return 0;
}
```
