Answers for "if statement symbols c++"

C++
2

if c++

int x = 20;
int y = 18;
if (x > y) {
  cout << "x is greater than y";
}
Posted by: Guest on February-11-2021

Browse Popular Code Answers by Language