/* * @topic T00012 Feb 14, 2013 -- C++ expressions * @brief Equality test <tt>==</tt> operator */ #include <iostream> int main() { int xx = 22; int yy = 2; int zz = ( xx == yy ); // 1 or 0 if ( zz ) { std::cout << "xx == yy" << "\n"; } return 0; }