Web for Nerds !!!

Home

My Blog

  • Sidekicks
    Two decades just went like that. When computer meant DOS, network system meant UNIX and Novell. I was ignorant about...
  • Protected: Test Gallery 3
    There is no excerpt because this is a protected post....
  • Well Done FM
    I never tracked “sensex” as I did today. After US credit rating downgraded to AA+ (AA+/Negative/A-1+), I went curious how...
  • New Railway Ticketing Portal – IndianRailways.Gov.In
    IRCTC – Indian Railway Catering and Tourism Corporation through its internet ticket booking website irctc.co.in, sold 7.20 Crore tickets with...

Featured Article

  • PSLV-C17  Launches GSAT 12 Satellite Succesfully PSLV-C17 Launches GSAT 12 Satellite Succesfully
    Indian’s Launch Vehical PSLV (C17) on its nineteenth flight, carrying 12 Extended C-band transponders of GSAT-12, weighing 1410 Kilograms, launched successfully today from second launch pad of Satish Dhawan Space Centre in Sriharikota at 4.48 pm. ISRO released photos of PSLV-C17 launch through isro.org. After 30 minutes, [...]...

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 > Π...