Rupee falls 1% to 55/$, Sensex, Nifty flat

The BSE Sensex and NSE Nifty started off trade on a flat note for fourth consecutive session on Thursday. Investors may be waiting for decision by European Central Bank today and the first quarter results of FY13 (that will be kicked off next week with Infosys). Industrial output and inflation data (next week) will also be [...]

[ More ] July 5th, 2012 | 1 Comment | Posted in General |

Tom Cruise the highest paid actor

Tom Cruise, who is reeling from wife Katie Holmes’ shocking Thursday divorce filing last week after five years of marriage, topped Forbes’ list of highest earning actors, after earning 75 million dollars between May 2011 and May 2012. The actor who turned 50 on Tuesday, enjoyed a successful year after the flick ‘Mission: Impossible – [...]

[ More ] July 5th, 2012 | No Comments | Posted in General |

Doomsday news van

It’s the end of the world as BUTTERFINGER knows it! Counting down the days to the Mayan prophecy predicted for December 21, 2012, Butterfinger today embarks on a nationwide tour with the Butterfinger BARmageddon News Network (BBNN) news van. Built to collect evidence, the BBNN news van features state-of-the-art news equipment and never-before-seen devices with [...]

[ More ] July 5th, 2012 | No Comments | Posted in General |

C Tutorial For The Beginners With Example And Source Code

C programming examples for beginners  The Programmings are done step by step based on the syllabus. The C programming examples  for beginners will help the beginners to understand the C programming , operators, loops, arrays, strings, file etc easily.The C programming examples  for beginners is very easy code to understand for the beginners C programming codes [...]

[ More ] July 4th, 2012 | 3 Comments | Posted in General, Programming |

C programm Examples

C Program to check if mouse support is available or not #include #include int initmouse(); union REGS i, o; main() { int status; status = initmouse(); if ( status == 0 ) printf(“Mouse support not available.\n”); else printf(“Mouse support available.\n”); getch(); return 0; } int initmouse() { i.x.ax = 0; int86(0X33,&i,&o); return ( o.x.ax ); [...]

[ More ] July 4th, 2012 | No Comments | Posted in Programming |