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 |