In all my time as a student of computer science i was always intrigued by the examples that authors used in their books on programming.Whenever they explained any program with functions they assumed two functions foo() and bar(). for ex: consider the following code : foo(){ int a=5, c; int b=6; c=a+b; return c; } […]