#define true false
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";}
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";}