Unless I've misunderstood your question I see nothing majorly wrong with your code and does indeed print 123 Genesis.

However, a point to note is that main should be declared as having a return type of int :

Code:
int main()
{
     ...
     return 0;
}
Regards