Answers for "write a program for if statement in cpp"

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
0

iff cpp

bool state = (value > 0) ? true : false;
Posted by: Guest on October-06-2021

Code answers related to "write a program for if statement in cpp"

Browse Popular Code Answers by Language