My Youtube Channel

Please Subscribe

Flag of Nepal

Built in OpenGL

Word Cloud in Python

With masked image

Monday, July 31, 2017

Telephone directory

Code for telephone directory in c


#include<stdio.h>
#include<string.h>
#include<windows.h>
#include<time.h>
struct teledir
{
    char firstname[50];
    char lastname[50];
    char address[50];
    char landline[15];
    char mobile[15];
}td;
struct signup
{
    char firstname[20];
    char lastname[20];
    char email[50];
    char password[20];
}s;
int f=0,ls=0;
char em[50];
void gotoxy(int x,int y)
{
    COORD coord;
    coord.X=x;
    coord.Y=y;
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
}
void SetColorAndBackground(int ForgC, int BackC)
{
     WORD wColor = ((BackC & 0x0F) << 4) + (ForgC & 0x0F);;
     SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), wColor);
}

void rectangle(int x, int y, int l, int b)
{
    int i,j;
    gotoxy(x,y);
    printf("%c",201);
    for(i=x+1;i<l-1;i++)
    {
        printf("%c",205);
    }
    gotoxy(x,y+1);
    for(i=y+1;i<b-1;i++)
    {
        gotoxy(x,i);
        printf("%c",186);
    }
    gotoxy(x,b-1);
    printf("%c",200);
    gotoxy(x+1,b-1);
    for(i=x+1;i<l-1;i++)
    {
        printf("%c",205);
    }
    printf("%c",188);
    gotoxy(l-1,y);
    printf("%c",187);
    gotoxy(l-1,y+1);
    for(i=y+1;i<b-1;i++)
    {
        gotoxy(l-1,i);
        printf("%c",186);
    }
}
void delay(unsigned int mseconds)
{
    clock_t goal = mseconds + clock();
    while (goal > clock());
}
void animation(char *anm,int a,int b)
{
  int i;
  for(i=0;i<strlen(anm);i++)
  {
      delay(150);
      gotoxy(a+i,b);
      printf("%c",*(anm+i));
  }
}
void wait()
{
    int i;

    printf("PLEASE WAIT...");
    for(i=0;i<10;i++)
    {
        delay(100);
        printf(".");
    }

}
void readnum(char *word)
{
        int i=0;
        word[i] = getch();
        while(word[i]!='\r')
        {
            if(word[i]=='\b')
            {

                 printf("\b \b");
                 i--;
            }
            else if((word[i]>=48&&word[i]<=57)||(word[i]=='+')||(word[i]=='-')||(word[i]=='*')||(word[i]=='#'))
            {
                printf("%c",word[i]);
                i++;
            }
            word[i]=getch();
        }
        word[i]='\0';
}
void upsign()
{
    FILE *fp,*tdr;
    char first[50],last[50];
    int c=0;
    system("cls");
    do
    {
        c=0;
        fp=fopen("id.txt","ab+");
        if(fp==NULL)
        {
            printf("Can't access the desired file.....");

        }
        SetColorAndBackground(14,16);
        rectangle(10,10,60,20);
        gotoxy(12,12);
        printf("ENTER YOUR FIRST NAME : ");
        gets(first);
        fflush(stdin);
        gotoxy(12,14);
        printf("ENTER YOUR LAST NAME : ");
        gets(last);
        fflush(stdin);
        gotoxy(12,16);
        printf("ENTER UNIQUE USERNAME : ");
        gets(em);
        while(fread(&s,sizeof(s),1,fp)==1)
        {
            if(strcmp(s.email,em)==0)
            {
                c++;
            }

        }
        if(c!=0)
        {
            gotoxy(12,31);
            printf("ALREADY EXISTS......");
            getch();
            system("cls");
            continue;
        }
        strcpy(s.email,em);
        fflush(stdin);
        gotoxy(12,18);
        printf("ENTER PASSSWORD : ");
        readpass(s.password);
        strcpy(s.firstname,first);
        strcpy(s.lastname,last);
        fflush(stdin);
        fwrite(&s,sizeof(s),1,fp);
        tdr=fopen(em,"ab+");
    }while(c!=0);
    fclose(fp);
    fclose(tdr);
}
void inlog()
{
    FILE *fp,*tdr;
    int flag=1;
    char ch,pass[20],x;
    system("cls");
    fp=fopen("id.txt","ab+");
    if(fp==NULL)
    {
        printf("Can't access the desired file.....");

    }
    SetColorAndBackground(9,16);
    rectangle(7,7,60,20);
    gotoxy(12,10);
    printf("ENTER USERNAME : ");
    scanf("%s",em);
    fflush(stdin);
    gotoxy(12,15);
    printf("ENTER PASSWORD : ");
    readpass(pass);
    fflush(stdin);
    while(fread(&s,sizeof(s),1,fp)==1)
    {
        if((strcmp(s.email,em)==0) && (strcmp(s.password,pass)==0))
        {
            gotoxy(12,21);
            wait();
            gotoxy(12,22);
            printf("\aLOGIN SUCCESSFUL...PRESS ANY KEY......");
            getch();
            tdr=fopen(em,"ab+");
            flag=0;
            break;
        }

    }
    if(flag==1)
    {
        gotoxy(12,22);
        printf("\aUSERNAME OR PASSWORD ERROR.....!!!");
        getch();
        system("cls");
        //inlog();
        ls=0;
        main();
    }
    fclose(fp);
    fclose(tdr);
}
void readpass(char pass[])
{
    int i=0;
    pass[i]=getch();

    while(pass[i]!='\r')
    {

        if(pass[i]=='\b')
        {

                 printf("\b \b");
                 i--;
        }
        else if((pass[i]>='a'&&pass[i]<='z')||(pass[i]>='A'&&pass[i]<='Z')||(pass[i]>='0'&&pass[i]<='9'))
        {
            printf("%c",42);//42 is the ascii value of *
            i++;
        }
         pass[i]=getch();

    }
    pass[i]='\0';
}
void frontscreen()
{
    int i,d=200;
    system("cls");
    rectangle(0,0,80,24);
    gotoxy(30,3); printf("T_");delay(d);
    gotoxy(30,3); printf("TE_");delay(d);
    gotoxy(30,3); printf("TEL_");delay(d);
    gotoxy(30,3); printf("TELE_");delay(d);
    gotoxy(30,3); printf("TELEP_");delay(d);
    gotoxy(30,3); printf("TELEPH_");delay(d);
    gotoxy(30,3); printf("TELEPHO_");delay(d);
    gotoxy(30,3); printf("TELEPHON_");delay(d);
    gotoxy(30,3); printf("TELEPHONE_");delay(d);
    gotoxy(30,3); printf("TELEPHONE _");delay(d);
    gotoxy(30,3); printf("TELEPHONE D_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DI_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIR_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIRE_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIREC_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIRECT_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIRECTO_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIRECTOR_");delay(d);
    gotoxy(30,3); printf("TELEPHONE DIRECTORY");delay(d);

    gotoxy(29,4);
    for(i=0;i<21;i++)
    {
        printf("%c",22);
    }
    gotoxy(33,9);
    printf("PROGRAMMED BY ");
    gotoxy(31,10);
    for(i=0;i<17;i++)
    {
        printf("%c",196);
    }
    gotoxy(35,12);
    printf("AJAY YADAV");
    gotoxy(35,14);
    printf("BCE AB 010");
    gotoxy(38,16);  printf("2070");
    gotoxy(28,20);
    printf("PRESS ANY KEY TO CONTINUE...");
    getch();
}
int menu()
{
    int i,choice;
    system("cls");
    SetColorAndBackground(10,16);
    rectangle(0,0,80,24);
    animation("MAIN MENU",32,2);
    gotoxy(57,1);         printf("%c %s %s",16,s.firstname,s.lastname);
    gotoxy(30,3);         for(i=0;i<13;i++)
                          printf("%c",196);
    gotoxy(20,5);        SetColorAndBackground(9,16);  printf("1   TO ADD     RECORD IN DIRECTORY");
    gotoxy(20,7);        SetColorAndBackground(10,16); printf("2   TO LIST    RECORD IN DIRECTORY");
    gotoxy(20,9);        SetColorAndBackground(11,16); printf("3   TO MODIFY  RECORD IN DIRECTORY");
    gotoxy(20,11);       SetColorAndBackground(12,16); printf("4   TO DELETE  RECORD IN DIRECTORY");
    gotoxy(20,13);       SetColorAndBackground(13,16); printf("5   TO SEARCH  RECORD IN DIRECTORY");
    gotoxy(20,15);       SetColorAndBackground(14,16); printf("6   TO LOG OUT AND QUIT THE PROGRAMME");
    gotoxy(17,16);
    for(i=0;i<40;i++)
    {
        printf("%c",196);
    }
    gotoxy(17,17);
    printf("ENTER YOUR CHOICE : ");
    scanf("%d",&choice);
    return(choice);
}
void add()
{
    FILE *fpointer;char condition=1,color=9;
    fpointer = fopen(em,"ab+");
    if(fpointer==NULL)
    {
        printf("ERRROR IN OPENING FILE......\a\a");
    }
    while(1)
    {
        fflush(stdin);
        system("cls");
        SetColorAndBackground(color,16);
        rectangle(0,0,80,3);
        animation(">> ADD RECORD",23,1);
        gotoxy(57,1); printf("%c %s %s",16,s.firstname,s.lastname);
        rectangle(5,5,70,22);
        gotoxy(9,8);
        fflush(stdin);
        printf("FIRSTNAME : ");
        scanf("%s",td.firstname);
        fflush(stdin);
        gotoxy(9,10);
        printf("LASTNAME : ");
        scanf("%s",td.lastname);
        fflush(stdin);
        gotoxy(9,12);
        printf("ADDRESS : ");
        scanf("%s",td.address);
        fflush(stdin);
        gotoxy(9,14);
        printf("LANDLINE : ");
        readnum(td.landline);
        fflush(stdin);
        gotoxy(9,16);
        printf("MOBILE : ");
        readnum(td.mobile);
        fflush(stdin);
        fwrite(&td,sizeof(td),1,fpointer);
        fflush(stdin);
        gotoxy(9,18);
        printf("ENTER ESC KEY TO EXIT AND ANY KEY TO INPUT MORE DATA : ");
        condition=getche();
        if(condition==27) //27 is ascii value of  esc
        {
            gotoxy(9,24);
            break;
        }
        color++;
        if(color>=14)
        {
            color=9;
        }

    }
    fclose(fpointer);
}
void list()
{
    FILE *fpointer;  int i=7,j,record=0,color=9;
    system("cls");
    SetColorAndBackground(11,16);
    rectangle(0,0,80,3);
    animation(">> LIST OF RECORD",2,1);
    gotoxy(57,1); printf("%c %s %s",16,s.firstname,s.lastname);
    fpointer=fopen(em,"rb");
    if(fpointer==NULL)
    {
        printf("Can't access.....");
    }
    SetColorAndBackground(14,16);
    gotoxy(2,5);         printf("FIRST NAME");
    gotoxy(17,5);        printf("LAST NAME");
    gotoxy(32,5);        printf("ADDRESS");
    gotoxy(47,5);        printf("LANDLINE");
    gotoxy(62,5);        printf("MOBILE");
    gotoxy(1,6);
    for(j=0;j<78;j++)
    {
        printf("%c",205);
    }
    while(fread(&td,sizeof(td),1,fpointer)==1)
    {
        SetColorAndBackground(color,16);
        fflush(stdin);
        gotoxy(2,i);
        printf("%s",td.firstname);
        fflush(stdin);
        gotoxy(17,i);
        printf("%s",td.lastname);
        fflush(stdin);
        gotoxy(32,i);
        printf("%s",td.address);
        fflush(stdin);
        gotoxy(47,i);
        printf("%s",td.landline);
        fflush(stdin);
        gotoxy(62,i);
        printf("%s",td.mobile);
        fflush(stdin);
        printf("\n ");
        for(j=0;j<78;j++)
        {
            printf("%c",196);
        }
        i=i+2;
        record++;
        color++;
        if(color>=14)
        {
            color=9;
        }
    }
    gotoxy(24,1);            printf("No. OF RECORDS IS %d",record);
    gotoxy(30,record*2+9);   printf("PRESS ANY KEY....");
    fclose(fpointer);
    getch();
}
void search()
{
    system("cls");
    int i,j,k=6,srch,fr=0,lr=0,ar=0,liner=0,mr=0;
    FILE *fpointer;     char frstname[50],lstname[50],adrs[50],line[15],mo[15];
    system("cls");
    fpointer=fopen(em,"rb");
    if(fpointer==NULL)
    {
        printf("ACCESS DENIED.......\a");
    }
    rectangle(0,0,80,24);
    SetColorAndBackground(10,16);
    animation("SEARCH MENU",32,2);
    gotoxy(57,1);         printf("%c %s %s",16,s.firstname,s.lastname);
    gotoxy(30,3);         for(i=0;i<15;i++)
                          printf("%c",196);
    gotoxy(20,5);         printf("1   TO SEARCH  THE  RECORD  BY FIRST NAME");
    gotoxy(20,7);         printf("2   TO SEARCH  THE  RECORD  BY LAST NAME");
    gotoxy(20,9);         printf("3   TO SEARCH  THE  RECORD  BY ADDRESS");
    gotoxy(20,11);        printf("4   TO SEARCH  THE  RECORD  BY LANDLINE");
    gotoxy(20,13);        printf("5   TO SEARCH  THE  RECORD  BY MOBILE NO.");
    gotoxy(20,15);        printf("%c   OR PRESS OTHER NUM KEY FOLLOWED BY ENTER",5);
    gotoxy(17,16);
    for(i=0;i<50;i++)
    {
        printf("%c",196);
    }
    gotoxy(17,17);
    printf("HOW DO YOU WANT TO SERACH ? : ");
    scanf("%d",&srch);
    if(srch==1)
    {
        system("cls");       SetColorAndBackground(11,16);
        rectangle(0,0,80,3);
        gotoxy(20,1);       printf("==>> SEARCH BY FIRST NAME");
        gotoxy(5,5);        rectangle(5,5,60,10);
        gotoxy(7,7);        printf("ENTER FIRST NAME : ");
                            scanf("%s",frstname);
                            system("cls");
        while(fread(&td,sizeof(td),1,fpointer)==1)
        {

            if(strcmp(td.firstname,frstname)==0)
            {
                gotoxy(2,3);         printf("FIRST NAME");
                gotoxy(17,3);        printf("LAST NAME");
                gotoxy(32,3);        printf("ADDRESS");
                gotoxy(47,3);        printf("LANDLINE");
                gotoxy(62,3);        printf("MOBILE");
                gotoxy(1,4);
                for(j=0;j<78;j++)
                {
                    printf("%c",205);
                }
                gotoxy(2,k);
                printf("%s",td.firstname);
                fflush(stdin);
                gotoxy(17,k);
                printf("%s",td.lastname);
                fflush(stdin);
                gotoxy(32,k);
                printf("%s",td.address);
                fflush(stdin);
                gotoxy(47,k);
                printf("%s",td.landline);
                fflush(stdin);
                gotoxy(62,k);
                printf("%s",td.mobile);
                fflush(stdin);
                printf("\n ");
                for(j=0;j<78;j++)
                {
                    printf("%c",196);
                }
                k=k+2;
                fr++;
            }

        }
        if(fr==0)
        {
            rectangle(10,10,60,17);
            gotoxy(20,13);       printf("\aRECORD NOT FOUND....");
        }
        gotoxy(19,k+12);         printf("TOTAL SEARCH RESULT BY FIRST NAME IS %d",fr);
        gotoxy(24,k+14);         printf("PRESS ANY KEY ....");getch();
    }
    if(srch==2)
    {
        system("cls");      SetColorAndBackground(12,16);
        rectangle(0,0,80,3);
        gotoxy(20,1);       printf("==>> SEARCH BY LAST NAME");
        gotoxy(5,5);        rectangle(5,5,60,10);
        gotoxy(7,7);        printf("ENTER LAST NAME : ");
                            scanf("%s",lstname);
                            system("cls");
        while(fread(&td,sizeof(td),1,fpointer)==1)
        {

            if(strcmp(td.lastname,lstname)==0)
            {
                gotoxy(2,3);         printf("FIRST NAME");
                gotoxy(17,3);        printf("LAST NAME");
                gotoxy(32,3);        printf("ADDRESS");
                gotoxy(47,3);        printf("LANDLINE");
                gotoxy(62,3);        printf("MOBILE");
                gotoxy(1,4);
                for(j=0;j<78;j++)
                {
                    printf("%c",205);
                }
                gotoxy(2,k);
                printf("%s",td.firstname);
                fflush(stdin);
                gotoxy(17,k);
                printf("%s",td.lastname);
                fflush(stdin);
                gotoxy(32,k);
                printf("%s",td.address);
                fflush(stdin);
                gotoxy(47,k);
                printf("%s",td.landline);
                fflush(stdin);
                gotoxy(62,k);
                printf("%s",td.mobile);
                fflush(stdin);
                printf("\n ");
                for(j=0;j<78;j++)
                {
                    printf("%c",196);
                }
                k=k+2;
                lr++;
            }

        }
        if(lr==0)
        {
            rectangle(10,10,60,17);
            gotoxy(20,13);       printf("\aRECORD NOT FOUND....");
        }
        gotoxy(19,k+12);         printf("TOTAL SEARCH RESULT BY LAST NAME IS %d",lr);
        gotoxy(24,k+14);         printf("PRESS ANY KEY ....");getch();
    }
    if(srch==3)
    {
        system("cls");      SetColorAndBackground(13,16);
        rectangle(0,0,80,3);
        gotoxy(20,1);       printf("==>> SEARCH BY ADDRESS");
        gotoxy(5,5);        rectangle(5,5,60,10);
        gotoxy(7,7);        printf("ENTER ADDRESS : ");
                            scanf("%s",adrs);
                            system("cls");
        while(fread(&td,sizeof(td),1,fpointer)==1)
        {

            if(strcmp(td.address,adrs)==0)
            {
                gotoxy(2,3);         printf("FIRST NAME");
                gotoxy(17,3);        printf("LAST NAME");
                gotoxy(32,3);        printf("ADDRESS");
                gotoxy(47,3);        printf("LANDLINE");
                gotoxy(62,3);        printf("MOBILE");
                gotoxy(1,4);
                for(j=0;j<78;j++)
                {
                    printf("%c",205);
                }
                gotoxy(2,k);
                printf("%s",td.firstname);
                fflush(stdin);
                gotoxy(17,k);
                printf("%s",td.lastname);
                fflush(stdin);
                gotoxy(32,k);
                printf("%s",td.address);
                fflush(stdin);
                gotoxy(47,k);
                printf("%s",td.landline);
                fflush(stdin);
                gotoxy(62,k);
                printf("%s",td.mobile);
                fflush(stdin);
                printf("\n ");
                for(j=0;j<78;j++)
                {
                    printf("%c",196);
                }
                k=k+2;
                ar++;
            }
        }
        if(ar==0)
        {
            rectangle(10,10,60,17);
            gotoxy(20,13);       printf("\aRECORD NOT FOUND....");
        }
        gotoxy(19,k+12);         printf("TOTAL SEARCH RESULT BY ADDRESS IS %d",ar);
        gotoxy(24,k+14);         printf("PRESS ANY KEY ....");getch();
    }
    if(srch==4)
    {
        system("cls");      SetColorAndBackground(14,16);
        rectangle(0,0,80,3);
        gotoxy(20,1);       printf("==>> SEARCH BY LANDLINE");
        gotoxy(5,5);        rectangle(5,5,60,10);
        gotoxy(7,7);        printf("ENTER LANDLINE NUMBER : ");
                            scanf("%s",line);
                            system("cls");
        while(fread(&td,sizeof(td),1,fpointer)==1)
        {
            if(strcmp(td.landline,line)==0)
            {
                gotoxy(2,3);         printf("FIRST NAME");
                gotoxy(17,3);        printf("LAST NAME");
                gotoxy(32,3);        printf("ADDRESS");
                gotoxy(47,3);        printf("LANDLINE");
                gotoxy(62,3);        printf("MOBILE");
                gotoxy(1,4);
                for(j=0;j<78;j++)
                {
                    printf("%c",205);
                }
                gotoxy(2,k);
                printf("%s",td.firstname);
                fflush(stdin);
                gotoxy(17,k);
                printf("%s",td.lastname);
                fflush(stdin);
                gotoxy(32,k);
                printf("%s",td.address);
                fflush(stdin);
                gotoxy(47,k);
                printf("%s",td.landline);
                fflush(stdin);
                gotoxy(62,k);
                printf("%s",td.mobile);
                fflush(stdin);
                printf("\n ");
                for(j=0;j<78;j++)
                {
                    printf("%c",196);
                }
                k=k+2;
                liner++;
            }
        }
        if(liner==0)
        {
            rectangle(10,10,60,17);
            gotoxy(20,13);       printf("\aRECORD NOT FOUND....");
        }
        gotoxy(19,k+12);             printf("TOTAL SEARCH RESULT BY LANDLINE IS %d",liner);
        gotoxy(24,k+14);             printf("PRESS ANY KEY ....");getch();

    }
    if(srch==5)
    {
        system("cls");      SetColorAndBackground(9,16);
        rectangle(0,0,80,3);
        gotoxy(20,1);       printf("==>> SEARCH BY MOBILE NUMBER");
        gotoxy(5,5);        rectangle(5,5,60,10);
        gotoxy(7,7);        printf("ENTER MOBILE NUMBER : ");
                            scanf("%s",mo);
                            system("cls");
        while(fread(&td,sizeof(td),1,fpointer)==1)
        {

            if(strcmp(td.mobile,mo)==0)
            {
                gotoxy(2,3);         printf("FIRST NAME");
                gotoxy(17,3);        printf("LAST NAME");
                gotoxy(32,3);        printf("ADDRESS");
                gotoxy(47,3);        printf("LANDLINE");
                gotoxy(62,3);        printf("MOBILE");
                gotoxy(1,4);
                for(j=0;j<78;j++)
                {
                    printf("%c",205);
                }
                gotoxy(2,k);
                printf("%s",td.firstname);
                fflush(stdin);
                gotoxy(17,k);
                printf("%s",td.lastname);
                fflush(stdin);
                gotoxy(32,k);
                printf("%s",td.address);
                fflush(stdin);
                gotoxy(47,k);
                printf("%s",td.landline);
                fflush(stdin);
                gotoxy(62,k);
                printf("%s",td.mobile);
                fflush(stdin);
                printf("\n ");
                for(j=0;j<78;j++)
                {
                    printf("%c",196);
                }
                k=k+2;
                mr++;
            }

        }
        if(mr==0)
        {
            rectangle(10,10,60,17);
            gotoxy(20,13);       printf("\aRECORD NOT FOUND....");
        }
        gotoxy(19,k+12);         printf("TOTAL SEARCH RESULT BY MOBILE NUMBER IS %d",mr);
        gotoxy(24,k+14);         printf("PRESS ANY KEY ....");  getch();
    }
    fclose(fpointer);
}
void modify()
{
    FILE *fpointer,*temp;   char mo[15],line[15]; int msrch,chk=0,i;
    system("cls");
    rectangle(0,0,80,24);
    animation("MODIFICATION MENU",32,2);
    gotoxy(57,1);         printf("%c %s %s",16,s.firstname,s.lastname);
    gotoxy(30,3);         for(i=0;i<21;i++)
                          printf("%c",196);
    gotoxy(20,5);         printf("1   TO MODIFY RECORDS BY  MOBILE     NUMBER");
    gotoxy(20,7);         printf("2   TO MODIFY RECORDS BY  LANDLINE   NUMBER");
    gotoxy(20,9);         printf("%c   OR PRESS OTHER NUM KEY FOLLOWED BY ENTER",16);
    gotoxy(17,10);
    for(i=0;i<50;i++)
    {
        printf("%c",196);
    }
    gotoxy(17,12);
    printf("HOW DO YOU WANT TO PREFORM MODIFICATION ? : ");
    scanf("%d",&msrch);
    system("cls");
    fpointer = fopen(em,"rb");
    temp=fopen("temp","ab+");
    if(fpointer==NULL)
    {
        printf("ERRROR IN OPENING FILE......\a\a");
    }
    if(temp==NULL)
    {
        printf("ERROR IN OPENING FILE.......\a");
    }
    switch(msrch)
    {
        case 1:
        {
            rectangle(0,0,80,3);
            gotoxy(20,1);       printf("==>> MODIFICATION BY MOBILE NUMBER");
            gotoxy(5,5);        rectangle(5,5,60,10);
            gotoxy(7,7);        printf("ENTER MOBILE NUMBER : ");
                                readnum(mo);//to accept (number,*,#,+,-) as input
            system("cls");
            while(fread(&td,sizeof(td),1,fpointer)==1)
            {
                if(strcmp(td.mobile,mo)==0)
                {
                    chk=1;  SetColorAndBackground(12,16);
                    system("cls");
                    rectangle(0,0,80,3);
                    gotoxy(20,1);       printf("MODIFICATION OF MOBILE NUMBER %s",mo);
                    rectangle(5,5,70,21);
                    gotoxy(9,8);    fflush(stdin);
                    printf("FIRSTNAME : ");
                    scanf("%s",&td.firstname);
                    fflush(stdin);
                    gotoxy(9,10);
                    printf("LASTNAME : ");
                    gets(td.lastname);
                    fflush(stdin);
                    gotoxy(9,12);
                    printf("ADDRESS : ");
                    gets(td.address);
                    fflush(stdin);
                    gotoxy(9,14);
                    printf("LANDLINE : ");
                    readnum(td.landline);
                    fflush(stdin);
                    gotoxy(9,16);
                    printf("MOBILE : ");
                    readnum(td.mobile);
                    fflush(stdin);
                    fwrite(&td,sizeof(td),1,temp);
                }
                else
                {
                    fwrite(&td,sizeof(td),1,temp);
                }
            }
            fclose(fpointer);
            fclose(temp);
            remove(em);
            rename("temp",em);
            if(chk!=0)
            {
                system("cls");
                rectangle(10,10,60,20);
                gotoxy(12,12);      wait();
                gotoxy(15,15);      printf("\aRECORD SUCCESSFULLY MODIFIED.....");
                gotoxy(17,17);      printf("PRESS ANY KEY...");
            }
            if(chk==0)
            {
                system("cls");
                rectangle(10,10,60,20);
                gotoxy(12,12);      wait();
                gotoxy(15,15);      printf("\aRECORD NOT FOUND....");
                gotoxy(17,17);      printf("PRESS ANY KEY...");
            }
            break;
        }
        case 2:
        {
            rectangle(0,0,80,3);
            gotoxy(20,1);       printf("==>> MODIFICATION BY LANDLINE NUMBER");
            gotoxy(5,5);        rectangle(5,5,60,10);
            gotoxy(7,7);        printf("ENTER LANDLINE NUMBER : ");
                                readnum(line);//scanf("%s",line);
            system("cls");
            while(fread(&td,sizeof(td),1,fpointer)==1)
            {
                if(strcmp(td.landline,line)==0)
                {
                    chk=1;      SetColorAndBackground(13,16);
                    system("cls");
                    rectangle(0,0,80,3);
                    gotoxy(20,1);       printf("MODIFICATION OF LANDLINE NUMBER %s",line);
                    rectangle(5,5,70,21);
                    gotoxy(9,8);
                    printf("FIRSTNAME : ");
                    scanf("%s",&td.firstname);
                    fflush(stdin);
                    gotoxy(9,10);
                    printf("LASTNAME : ");
                    gets(td.lastname);
                    fflush(stdin);
                    gotoxy(9,12);
                    printf("ADDRESS : ");
                    gets(td.address);
                    fflush(stdin);
                    gotoxy(9,14);
                    printf("LANDLINE : ");
                    readnum(td.landline);
                    fflush(stdin);
                    gotoxy(9,16);
                    printf("MOBILE : ");
                    readnum(td.mobile);
                    fflush(stdin);
                    fwrite(&td,sizeof(td),1,temp);
                }
                else
                {
                    fwrite(&td,sizeof(td),1,temp);
                }
            }
            fclose(fpointer);
            fclose(temp);
            remove(em);
            rename("temp",em);
            if(chk!=0)
            {
                system("cls");
                rectangle(10,10,60,20);
                gotoxy(12,12);      wait();
                gotoxy(15,15);      printf("\aRECORD SUCCESSFULLY MODIFIED.....");
                gotoxy(17,17);      printf("PRESS ANY KEY...");
            }
            if(chk==0)
            {
                system("cls");
                rectangle(10,10,60,20);
                gotoxy(12,12);      wait();
                gotoxy(15,15);      printf("\aRECORD NOT FOUND....");
                gotoxy(17,17);      printf("PRESS ANY KEY...");
            }
            break;
        }
        default:
        {
            system("cls");
            main();
            break;
        }
    }
    getch();
}
void del()
{
    FILE *fpointer,*temp;       char fname[50],mo[15],ch;int dsrch,i,check=0;
    system("cls");          SetColorAndBackground(9,16);
    rectangle(0,0,80,24);
    animation("DELETE MENU",32,2);
    gotoxy(57,1);         printf("%c %s %s",16,s.firstname,s.lastname);
    gotoxy(30,3);         for(i=0;i<15;i++)
                          printf("%c",196);
    gotoxy(20,5);         printf("1   TO DELETE SELECTIVE RECORDS");
    gotoxy(20,7);         printf("2   TO DELETE     ALL   RECORDS");
    gotoxy(20,9);         printf("%c   OR PRESS OTHER NUM KEY FOLLOWED BY ENTER",4);
    gotoxy(17,10);
    for(i=0;i<50;i++)
    {
        printf("%c",196);
    }
    gotoxy(17,12);
    printf("HOW DO YOU WANT TO PREFORM DELETION ? : ");
    scanf("%d",&dsrch);
    system("cls");
    if(dsrch==1)
    {
        fpointer = fopen(em,"rb");
        temp=fopen("temp","ab+");
        if(fpointer==NULL)
        {
            printf("ERRROR IN OPENING FILE......\a\a");
        }
        if(temp==NULL)
        {
            printf("ERROR IN OPENING FILE.......\a");
        }
        SetColorAndBackground(11,16);
        rectangle(0,0,80,3);
        gotoxy(20,1);       printf("==>> SELECTIVE DELETION");
        gotoxy(5,5);        rectangle(5,5,60,15);
        gotoxy(7,7);        printf("ENTER FIRST NAME : ");
                            scanf("%s",fname);
        gotoxy(7,10);       printf("ENTER MOBILE NUMBER : ");
                            readnum(mo);
        system("cls");
        while(fread(&td,sizeof(td),1,fpointer)==1)
        {
            if((strcmp(td.firstname,fname)==0) && (strcmp(td.mobile,mo)==0))
            {
                check++;
                continue;
            }
            else
            {
                fwrite(&td,sizeof(td),1,temp);
            }
        }
        fclose(fpointer);
        fclose(temp);
        remove(em);
        rename("temp",em);
        if(check!=0)
        {
            rectangle(10,10,60,20);
            gotoxy(12,12);      wait();
            gotoxy(15,15);      printf("\aRECORD SUCCESSFULLY DELETED.....");
            gotoxy(17,17);      printf("PRESS ANY KEY...");
            getch();
        }
        if(check==0)
        {
            rectangle(10,10,60,20);
            gotoxy(12,12);      wait();
            gotoxy(15,15);      printf("\aRECORD NOT FOUND....");
            gotoxy(17,17);      printf("PRESS ANY KEY...");
            getch();
        }
    }
    if(dsrch==2)
    {
        system("cls");      SetColorAndBackground(12,16);
        rectangle(10,10,65,15);
        gotoxy(12,12);
        printf("ARE YOU SURE YOU WANT TO CLEAR ALL RECORDS ? ");
        if(getche()=='y' || getche()=='Y')
        {
            getch();
            system("cls");
            fpointer = fopen(em,"rb");
            temp=fopen(em,"ab+");
            if(fpointer==NULL)
            {
                printf("ERRROR IN OPENING FILE......\a\a");
            }
            if(temp==NULL)
            {
                printf("ERROR IN OPENING FILE.......\a");
            }
            fclose(fpointer);
            fclose(temp);
            remove(em);
            rename("temp",em);
            rectangle(10,10,60,20);
            gotoxy(12,12);      wait();
            gotoxy(15,15);      printf("\aRECORD SUCCESSFULLY DELETED.....");
            gotoxy(17,17);      printf("PRESS ANY KEY...");
            getch();
        }
    }
    else
    {
        main();
    }
}
void end()
{
    system("cls");
    SetColorAndBackground(12,16);
    rectangle(12,7,60,15);
    gotoxy(14,9);        printf("PRESS SPACE BAR TO RETURN TO PROGRAM");
    gotoxy(15,12);       printf("OR ANY OTHER KEY TO END.....");
    gotoxy(17,17);
                        if(getch()==32)
                        main();
                        else
                        exit(0);
}
void main()
{
    int mchoice;char x;
    if(f==0)
    {
        frontscreen();
        f++;
        system("cls");
    }
    if(ls==0)
    {

        SetColorAndBackground(13,16);
        rectangle(25,7,60,15);
        gotoxy(28,9);  printf("1   FOR LOG IN");
        gotoxy(28,12); printf("2   FOR SIGN UP");
        gotoxy(25,20);
        x=getche();
        switch(x)
        {
            case '1':
            {
                inlog();
                break;
            }

            case '2':
            {
                upsign();
                break;
            }
        }
        ls++;

    }
    mchoice=menu();
    switch(mchoice)
    {
        case 1:
        {
            add();
            main();
            break;
        }
        case 2:
        {
            list();
            main();
            break;
        }
        case 3:
        {
            modify();
            main();
            break;
        }
        case 4:
        {
            del();
            main();
            break;
        }
        case 5:
        {
            search();
            main();
            break;
        }
        case 6:
        {
            end();
            break;
        }
        default:
        {
            main();
            break;
        }
    }
    getch();
}

Sunday, July 30, 2017

POEM

Parents

Mother, Mother
You are dearer than other                                             
                                                                                        
Father, Father                                                                
You are superior to other
Though you don’t become famous
You both can die for us                          

For us you are incarnation of god and first school                    
It is you who teach us in every moment to be graceful         

We the children learn to walk catching your finger
It is you who always save us from danger

There is heaven and world at your feet
No other can take your seat

We the children want only blessings from you
You are everything for us from all point of view.

Saturday, July 29, 2017

MINI PROJECT REPORT OF DSA













Click here to download.

Friday, July 14, 2017

Numerical methods

C++ program for curve fitting of linear and exponential equation

For linear:

#include<iostream>
using namespace std;
class datacalc
{
private:
    float sumxsq,sumxy,sumx,sumy;
    float valuex[50],valuey[50];
    float a,b;
    int i,n;
public:
    void getdata()
    {
        cout<<"enter the no. of data to input:";
        cin>>n;
        cout<<"enter the value for x and y:"<<endl;
        for(i=0;i<n;i++)
        {
            cin>>valuex[i]>>valuey[i];

        }

    }
    void calculate()
    {
         sumxsq=0,sumxy=0,sumx=0,sumy=0;

        for(i=0;i<n;i++)
        {
            sumx=sumx+valuex[i];
            sumy=sumy+valuey[i];
            sumxy=sumxy+valuex[i]*valuey[i];
            sumxsq=sumxsq+valuex[i]*valuex[i];
            a=(sumy*sumxsq-sumx*sumxy)/(n*sumxsq-sumx*sumx);
            b=(n*sumxy-sumx*sumy)/(n*sumxsq-sumx*sumx);
        }
    }
        void display()
        {
            cout<<"the value of a and b are:"<<a<<" , "<<b<<endl;
            cout<<"the required equation is:"<<endl<<"y="<<a<<"+"<<b<<"x";
        }


};
int main()
{
    datacalc d1;
    d1.getdata();
    d1.calculate();
    d1.display();
    return 0;
}


For exponential:

#include<iostream>
#include<cmath>
using namespace std;
class datacalc
{
private:
    float sumxsq,sumxy,sumx,sumy;
    float valuex[50],valuey[50];
    float a,b,A;
    int i,n;
public:
    void getdata()
    {
        cout<<"enter the no. of data to input:";
        cin>>n;
        cout<<"enter the value for x and y:"<<endl;
        for(i=0;i<n;i++)
        {
            cin>>valuex[i]>>valuey[i];

        }

    }
    void calculate()
    {
         sumxsq=0,sumxy=0,sumx=0,sumy=0;

        for(i=0;i<n;i++)
        {
            sumx=sumx+valuex[i];
            sumy=sumy+log(valuey[i]);
            sumxy=sumxy+valuex[i]*log(valuey[i]);
            sumxsq=sumxsq+valuex[i]*valuex[i];
            A=(sumy*sumxsq-sumx*sumxy)/(n*sumxsq-sumx*sumx);
            b=(n*sumxy-sumx*sumy)/(n*sumxsq-sumx*sumx);
            a=exp(A);
        }
    }
        void display()
        {
            cout<<"the value of a and b are:"<<a<<" , "<<b<<endl;
            cout<<"the required equation is:"<<endl<<"y="<<a<<"exp("<<b<<"x)";
        }


};
int main()
{
    datacalc d1;
    d1.getdata();
    d1.calculate();
    d1.display();
    return 0;
}

Data structure and algorithm

Program to convert an infix to postfix in c++

 #include<iostream>
#include<ctype.h>
#define size 50
using namespace std;
char s[size];
int top=-1;
push(char elem)
{
    s[++top]=elem;
}
char pop()
{
    return (s[top--]);
}
int pr(char elem)
{
    switch(elem)
    {
        case '=':return 0;
        case '(':return 1;
        case '-':
        case '+':return 2;
        case '*':
        case '/':return 3;
    }
}
int main()
{
    char infix[50],postfix[50],ch,elem;
    int i=0,k=0;
    cout<<"read the infix expression:";
    cin>>infix;
    push('=');
    while((ch=infix[i++])!='\0')
    {
        if(ch=='(') push(ch);
        else
            if(isalpha(ch)) postfix[k++]=ch;
        else
            if(ch==')')
        {
            while(s[top]!='(')
            postfix[k++]=pop();
            elem=pop();
        }
        else
        {
            while(pr(s[top])>=pr(ch))
                postfix[k++]=pop();
            push(ch);
        }
    }
        while(s[top]!='=')
            postfix[k++]=pop();
        postfix[k]='\0';
        cout<<endl<<"postfix expression:"<<postfix;
return 0;
}

Data structure and algorithm

Program for circular queue in c++

#include<iostream>
using namespace std;
const int size=5;
class cqueue
{
private:
    int cq[size];
    int front,rear,data;
public:
    cqueue()
    {
        front=-1;
        rear=-1;
    }
    void insert(int n)
    {
        if(front==((rear+1)%size))
        {
            cout<<"queue is full."<<endl;

        }
        else if(rear==-1&&front==-1)
        {
            rear=0;
            front=0;
            cq[rear]=n;
            cout<<"inserted data is:"<<cq[rear]<<endl;
        }
        else
        {
            rear=(rear+1)%size;
            cq[rear]=n;
            cout<<"inserted data is:"<<cq[rear]<<endl;
        }
    }
    void deldata()
    {
        if(front==(rear+1))
        {

            cout<<"queue is empty."<<endl;
        }
        else
        {
            data=cq[front];
            cq[front]=NULL;
            cout<<"deleted data:"<<data<<endl;
            front=(front+1)%size;
            //front=front+1;

        }
    }
    void view()
    {
        cout<<"f="<<front<<endl;
        cout<<"r="<<rear<<endl;
    }
};
int main()
{
    cqueue c1;
    c1.insert(10);
    c1.insert(20);
    c1.insert(30);
    c1.insert(40);
    c1.insert(50);
    c1.insert(60);
    c1.deldata();
    c1.deldata();
    c1.deldata();
    c1.deldata();
  c1.view();
    c1.insert(60);
    c1.insert(70);
    c1.insert(80);
    c1.insert(90);
    c1.insert(80);
    c1.insert(90);
    c1.view();
    return 0;
}

Data structure and algorithm

Program for linear queue in c++

#include<iostream>
using namespace std;
const int size =5;
class queue
{
private:
    int front,rear,n;
    int q[size];
public:
       queue()
    {
        front=0;
        rear=0;
    }
    void insert()
    {
        if(rear==size)
        {
            cout<<"queue is full."<<endl;
        }
        else
        {
            cout<<"enter the data in queue:";
            cin>>n;
            q[rear]=n;
            rear++;
            insert();
        }
    }
    void rem()
    {
        if(rear==front)
        {
            cout<<"queue is empty."<<endl;

        }
        else
        {
            cout<<"the deleted data is:"<<q[front]<<endl;
            q[front]==NULL
            front++;
            rem();
        }
    }
};
int main()
{
    queue q1;
    q1.insert();
    q1.rem();
    return 0;
}



Data structure and algorithm

Program for stack in c++

#include<iostream>
using namespace std;
const int size=5;
class stack
{
private:
    int top,q[size],data;
public:
    stack()
    {
        top=-1;
    }
    void push()
    {
        if(top==size-1)
        {
            cout<<"stack overflow"<<endl;
        }
        else
        {
        cout<<"enter the data into the stack:";
        cin>>q[++top];
        push();
        }
    }
    void pop()
    {
        if(top==-1)
        {
            cout<<"stack underflow"<<endl;
        }
        else{
        data=q[top];
        q[top]==NULL;
        cout<<"the deleted data is:"<<data<<endl;
        top--;
        pop();
        }
    }
    void display()
    {
        cout<<"data in the stack:"<<endl;
        for(int i=0;i=4;i++)
        {
            cout<<q[i]<<endl;
        }
    }
};
int main()
{
    stack s1;
    s1.push();
    s1.display();
    s1.pop();
    return 0;
}


8086 Programming

How to display a string terminated by $?

TITLE DISPLAY A STRING
.MODEL SMALL
.STACK 32
.DATA
STR1 DB ".....THE KING OF JUNGLE......$"
.CODE
MAIN PROC FAR
MOV AX, @DATA
MOV DS,AX

MOV AH,09
MOV DX, OFFSET STR1
INT 21H

MOV AX,4C00H
INT 21H
MAIN ENDP
END MAIN

8086 programming

How to display a string using character reading function?

TITLE DISPLAY STRING USING CHARACTER READING FUNCTION
.MODEL SMALL
.STACK 32
.DATA
STR1 DB "....THE KING OF JUNGLE...."
LEN DW $-STR1
.CODE
MAIN PROC FAR
MOV AX,@DATA
MOV DS,AX

MOV CX,LEN
MOV AH,02
MOV BX,OFFSET STR1
L1: MOV DL,[BX]
INC BX
INT 21H
LOOP L1

MOV AX,4C00H
INT 21H
MAIN ENDP
END MAIN

8086 Programming

How to add numbers stored in consecutive memory?

TITLE ADD THE DATA OF TABLE
.MODEL SMALL
.STACK 32
.DATA

TABLE DW 1234H,4563H,7944H,1234H
SUM DW ?
.CODE
MAIN PROC FAR
MOV AX,@DATA
MOV DS,AX

MOV CX,04H
MOV SI,OFFSET TABLE
MOV AX,0000H
L1:ADD AX,[SI]
INC SI
INC SI
DEC CX
JNZ L1


MOV AX,4C00H
INT 21H
MAIN ENDP
END MAIN

8086 Programming

How to get string and display the string in a new line?

TITLE READ AND WRITE STRING
.MODEL SMALL
.STACK 32
.DATA
MAXCHR DB 20H
ACTCHR DB ?
STR1 DB 20 DUP('$')
.CODE
MAIN PROC FAR
MOV AX,@DATA
MOV DS,AX

MOV AH,0AH
MOV DX,OFFSET MAXCHR
INT 21H

MOV AH,02H
MOV DL,0DH
INT 21H
MOV DL,0AH
INT 21H

MOV CL,ACTCHR
MOV CH,00H
MOV BX,OFFSET STR1
L1: MOV DL,[BX]
INC BX
INT 21H
LOOP L1

MOV AX,4C00H
INT 21H
END MAIN

8086 Programming

How to get sentence as input and display each word in new line?

TITLE MULTILINE
.MODEL SMALL
.STACK 32
.DATA
MAXCHR DB 50H
ACTCHR DB ?
STR1 DB 50 DUP(?)
.CODE
MAIN PROC FAR
MOV AX,@DATA
MOV DS,AX

MOV AH,0AH
MOV DX,OFFSET MAXCHR
INT 21H

MOV AH,02H
MOV DL,0DH
INT 21H
MOV DL,0AH
INT 21H

MOV CL,ACTCHR
MOV CH,00H
MOV BX,OFFSET STR1
 
L1:CMP BYTE PTR [BX],20H
JNZ L2
MOV DL,0DH
INT 21H
MOV DL,0AH
INT 21H
INC BX
L2:MOV DL,[BX]
INT 21H
INC BX
LOOP L1

MOV AX,4C00H
INT 21H
MAIN ENDP

END MAIN

8086 Programming

How to add two numbers?

TITLE ADD
.MODEL SMALL
.STACK 32
.DATA
VAL1 DW 1234H
VAL2 DW 4321H
SUM DW ?
.CODE
MAIN PROC FAR
MOV AX,@DATA
MOV DS,AX

MOV AX,VAL1
ADD AX,VAL2
MOV SUM,AX

MOV AX,4C00H
INT 21H
MAIN ENDP
END MAIN

POEM

MYSTERIOUS FOREST




THERE IS A FOREST 
WHERE NOTHING IS IN REST

WHEN WE TOUCH LEAF
ANIMALS BECOME DEAF

IN SPITE OF DOG, LIONS BARK
IN DAY IT IS ALWAYS DARK

THE WATERS ARE OF COLOR RED
BY RABBIT, TIGERS ARE AFRAID

NO SOUND COMES OUT THOUGH THEY HAVE MOUTH

NO ONE KNOWS WHAT IS THE MYSTERY ABOUT?

POEM

MY MOTHERLAND


Warriors saved its sovereignty      
by the use of knife
this is my motherland,
Lovable than my life
In tradition, cast, culture, language
there is diversity
Despite of these differences
there is strong unity
Here people shows such love
that it can even uproot hostility
Throughout the world
It has spread its identity
My motherland is full of
Lowland, valley and Doon
For us these are
a great boon
My motherland is
Superior to heaven
Of  different cast sub cast
Its a common garden
Before her, she has let
no enemy to stand
Thus, I proud to be son
Of my motherland.                             

Friday, March 10, 2017

POEM

FESTIVALS AND TRADITIONS

Holi is a festival of Hinduism
Any people can participate of Buddhism
No Islam or Christianity will be separated
Because the equality is highly exaggerated

Every country has physical and cultural diversity 
So we are challenged to maintain unity
Every castes have customs and traditions
But we should maintain unity in every variations

Buddha taught us non-violence
So we should always pray him with great silence
Parents are our god
So with them we should not do any kind of fraud

Every festivals should be celebrated with great devotion
Because they are important occasions
Festivals are observed for life long and beauty
But not to kill the god gifted humanity

Hindu, Muslim, Buddhism, Christian
Above all, we are human
Don't judge people on the basis of their caste
Because it's only good deed that counts and lasts

---Vijay Yadav


Poem

I saw a bird...




















It was the time of evening
when I saw a bird singing 

She was sitting on a lawn 
having got her wonderful eyes glown

Her head seemed to be brown
because of a beautiful and shiny crown 

Near to me there was a spring
where she was continuously seeing

I wondered for sometime what was there 
but soon I realised her friend was being stared

Suddenly, she started to sing in a sweet voice
then I thought she must be the nature's special choice

After sometime she flew to her way
giving me the freshness of whole day

I waited for her many seasons
and finally a bird came who seemed just like the previous pigeon
                                                              

Thursday, March 9, 2017




Thursday, February 9, 2017

MY BLOG QR CODE...


FEW USEFUL SOURCE CODES RELATED TO DATABASE MANAGEMENT SYSTEM IN VISUAL C++ ...

To download the source code, click here.
or
Scan the given QR code :

LIBRARY MANAGEMENT SYSTEM MADE IN VISUAL C++ ...





To download the file (with source code ), click here.
or
Scan the given QR code: