My friend sent me a exercise that he can't do:
(C++)
int main()
{
unsigned int x = 0xB0FF14a5;
unsigned int y = 0x7340c00e;
// enter code here
if(x==0x7340c00e && y==0xB0FF14a5) victory();
return 0;
}
The main goal is to run victory()
function.
Assumptions:
-max 11 chars
-You can't use: "main", "victory", "asm", "&", "*", "(", "/"
-You can use only one semicolon
I tried with #define
and some other things, but nothing (I'm not C++ master) :/
I have no idea how to solve this; thanks for helping!