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 |

Submit Form Using Java Script JavaScript Example

Form Submit Using Javascript : Form is submitted when the user press  submit button. Sometimes, we may require  to submit a  form  JavaScript programetically. JavaScript provides the form object that contains the submit() method. Use the ‘id’ of the form to get the form object. For example, if the name of your form is ‘myform’, [...]

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