What happens when you attempt to compile and run the following code?
#include
using namespace std;
#define FUN(arg) if(arg) cout<<"Test";
int main()
{
int i=1;
FUN(i<3);
return 0;
}
It prints: 0
It prints: T
It prints: T0
It prints: Test
Submit