Monday 30 December 2013

"Hello World" without using any single semicolon (;) in entire program [ simplest ]

# include <cstdio>

int main()
{
if ( printf ( "hello world\n" ) )
{
}
}


No comments:

Post a Comment