Programs & Software লেবেলটি সহ পোস্টগুলি দেখানো হচ্ছে৷ সকল পোস্ট দেখান
Programs & Software লেবেলটি সহ পোস্টগুলি দেখানো হচ্ছে৷ সকল পোস্ট দেখান

বুধবার, ১৮ মে, ২০১৬

Election System Software

Election System Software

This is really my proud that I have made a software that can conduct an election fully.
This was my project on C programming at first semester. As far as I know the idea is totally from my head.
And I have done successfully.

I have made more software but this is my most proudful software. I hope this software would be acceptance for all.

E-mail to Ripon das

বুধবার, ১১ মে, ২০১৬

বাংলায় নেটওয়ার্কিং শিখুন খুব সহজে

নেটওয়ার্কিং হচ্ছে কম্পিউটার বিজ্ঞানের এক নবদিগন্ত। সম্ভাবনাময় এই খাতে আপনি নিজেকে গড়ে তুলতে পারবেন একজন দক্ষ ইঞ্জিনিয়ার হিসেবে এবং কাজ করতে পারবেন অনলাইনেই।
কম্পিউটার বিজ্ঞানে পরে অনেকেরই লক্ষ থাকে নেটওয়ার্কিং নিয়ে কাজ করার।
নেটওয়ার্কিং এর বিভিন্ন বিষয় জানতে এই ওয়েব সাইট টি আপনার অনেক উপকারে আসবে ।

নেটওয়ার্কিং এর বিভিন্ন দিকঃ
  1. ওয়েব সার্ভারের কাজ করা
  2. ডেটা এন্ট্রি করা
  3. ব্লগিং
  4. ওয়ার্ডপ্রেস এবং অনন্য।


রবিবার, ১৬ আগস্ট, ২০১৫

C programming project on caontact management system

C programming project on caontact management system

//a project on cantact management system

#include<stdio.h>

void view(void);
void input(void);
void help(void);

struct input
{
    char name[15];
    char phone[15];
    char email[15];
}
people[100];
int i;

main()
{
    system("cls");
    system("color f9");
    int n,j;

    printf("\n\n");
    printf("Welcome to hallo world");
   //Ripon das
    printf("Welcome to Contact Management system..\n");
    printf("----------------------------------------------------\n");
    printf("\nPlease enter 1 for add contact.\n");
    printf("Please enter 2 for view contact.\n");
    printf("Please enter 3 for HELP\n");
    printf("Please enter 4 for exit\n");
    printf("----------------------------------------------------\n");
    scanf("%d",&n);

    while(n!=4)
    {
        switch(n)
        {
        case 1:
            input();
            break;
        case 2:
           view();
            break;
        case 3:
            help();
            break;

        default:
            printf("You enter wrong number. Please try again......");
            getch();
            main();

        }
    }
}
//Prepared by: Ripon das, CSE, University of Barisal

void input(void)
{
    system("cls");
    int n,i;
    FILE *f1;
    f1=fopen("Record file.txt","a");
    printf("How many data do you want?");
    scanf("%d",&n);
    printf("Please enter the data of %d people:",n);
    for(i=0;i<n;i++)

    {
       printf("\nEnter name %d (should one word):",i+1);

       scanf("%s",people[i].name);
       printf("\nEnter Mobile Number:");
       scanf("%s",people[i].phone);
       printf("\nEnter E-mail:");
       scanf("%s",people[i].email);
       fprintf(f1,"\n Name %d is: %s",i+1,people[i].name);
    fprintf(f1,"\nPhone Number is: %s",people[i].phone);
    fprintf(f1,"\n E-mail is: %s",people[i].email);
    }
    fclose(f1);
   main();
}

void view(void)
{
    system("cls");
    char c;

    FILE *f1;

    f1=fopen("Record file.txt","r");
    while((c=getc(f1))!=EOF)
        printf("%c",c);

    fclose(f1);
    printf("\nEnter any key to continue.........");
    getch();
    main();

}


void help(void)
{
    char ch;

    FILE *f2;
    f2=fopen("help.txt","r");
    while((ch=getc(f2))!=EOF)
    printf("%c",ch);
    fclose(f2);
    printf("\n\n\nEnter any key to continue.....");
    getch();
    main();
}