// Display "hello, world" without using any semi-colons
// in your program
#include <iostream>
int main()
{
if (std::cout << "Hello, World") {}
}
// In C:
if (printf("Hello, world")) {}