Name: Anonymous 2009-02-20 18:36
yo guys, just came across this mad piece of hardcore code, can anyone tell me what it does:
if(1) 1 ? 0 : 1;
if(1) 1 ? 0 : 1;
inline int question_mark_operator(int statement)
{
if(statement)
return 0;
else
return 1;
}
int main(int argc, char* argv[])
{
if(1)
question_mark_operator(1);
}