Web for Nerds !!!

Home

My Blog

Featured Article

  • Date With Passport Office Date With Passport Office
    It was simply unbelievable, if you ask me to summarize. Next thing you ask me why ? Well, after a month long research on net, calls to friends and relatives, tips & tricks from office travel desk, plus certain amount of assumptions built a solid imagination that [...]...

Programming

  • goto statements
    As far as I remember, I never thought about nested-if-jump was an issue (???) until I met the first person who asked *this* tricky IQ question (believed to be) during a weekend beer party, funnily after couple of rounds of dark beers. In semi-intoxicate state, it took [...]...
  • Evaluate a=b+++++c;
    How will a ANSI C compiler parse the following C snippet ? a=b+++++c; Select the right answer (i) a = (b++) + (++c); // because of common sense (ii) a = ((b++)++) + c ; // evaluated left to right (iii) a = b + (++(++c)); // [...]...
  • Value Of Pi
    Why is pre-defining Π (Pi) value as a macro or a constant is a better choice in most common use cases, rather than implementing Π (Pi) function to compute value. Hint: 22/7 > Π...