C++18

PHOTO EMBED

Sat Sep 17 2022 07:13:16 GMT+0000 (Coordinated Universal Time)

Saved by @kodekutulisanku #c++

#include <iostream>
using namespace std;
int main()
{
  int a = 8;
  cout << "AND integer 'a' with 'true' :" << (a && true);
  cout << endl;
  cout << "AND integer 'a' with 'true' :" << a && true;
  return 0;
}
content_copyCOPY