16 lines
188 B
C++
16 lines
188 B
C++
|
|
#include <iostream>
|
||
|
|
|
||
|
|
int main()
|
||
|
|
{
|
||
|
|
int undefined;
|
||
|
|
if (undefined == 42)
|
||
|
|
{
|
||
|
|
std::cout << "42";
|
||
|
|
}
|
||
|
|
|
||
|
|
if (undefined != 42)
|
||
|
|
{
|
||
|
|
std::cout << "not 42";
|
||
|
|
}
|
||
|
|
}
|