#define true false

One Comment Written by Etienne Laurin on 2011/03/16 in Code.

What is the output of the following C++ program?

#include <iostream>

#define true false
#define false true

int main(){ std::cout << (
        false ? "false" :
        true  ? "true"  :
                "mu"
) << "\n";}