Wednesday 22 August 2012

How to download mysql withGUI

Step for only downloading mysql database and gui

1.http://dev.mysql.com/downloads/mirror.php?id=408997(Open this page)
2.Showing window new user or returning user below the link » No thanks, just start my download! click on that.
3.After within a few second downloading start and download the mysql completer then install it.
4.http://code.google.com/p/sqlyog/downloads/list(Open this page)and download latest sqlyog community edition. and install it. example.http://code.google.com/p/sqlyog/downloads/detail?name=SQLyog-10.2.0-0Community.exe&can=2&q=(download this).

Instruction of installing mysql

when we install mysql that time he asking about password you given any password other part only next and next.... dont change anything.

when we install sqlyg community edition after completion he show graphical window continue or buy we click on continue and then.and give port number default as it is and give only password that u installing time given in mysql.

if u have problem then ask............................

Thursday 30 June 2011

'c; simple program of Even and odd number

#include<stdio.h>
#includ<conio.h>

void main()
{
    int no;
   clrscr();
   printf("Enter no:");
   scanf("%d",&no);

   if(no%2==0)
   printf("Numer is even:%d",no);
 
   else
   printf("Number is odd=%d",no);
  getch();
}