Yes, it's possible! In this text I will show a set of tricks to do it. I will present this on a simple program that that reads two numbers from STDIN and prints theirs sum to the STDOUT.
Normally I would start this program from declaring two variables:
int a, b;
Unfortunately, there's a semicolon...