Answers for "c++ else if defined"

C++
4

if else c++

#include <iostream>
using namespace std;
int main()
{
  int a;
  cin>>a;
  if(a= 0);
  {
    cout<<"a = " << a;
  }
}
Posted by: Guest on October-05-2021
0

if else in C++

//1
if(condition) {
   statement(s);
}
else {
   statement(s);
}
//2
(condition) ? (true_statement) : (false_statement)
Posted by: Guest on April-30-2021

Browse Popular Code Answers by Language