C Programming







10 comments:

  1. thanks for cpp program solution....................

    ReplyDelete
  2. thanks for cpp program solution....................

    ReplyDelete
  3. BAHUT SE SOLUTION RUN BHI NAI HOTE MAM......

    ReplyDelete
  4. BAHUT SE SOLUTION RUN BHI NAI HOTE MAM......

    ReplyDelete
  5. plz create this program it was arjrnts plz

    write a menu driven program to

    - createclass bill cointaning member variable like
    billno,bill_date, and amount.
    - overload + and - operator for increment and decreasing bill amount respectaly.
    - proide facility to change bill_date.
    - save data into file.
    - retrive data from file.
    - perform appropriate valiation.

    ReplyDelete
  6. if any one wanted all solution and projects for end term please visit
    www.codesdaddy.com
    ALL PUNE UNIVERSITY SOLUTIONS
    PRACTICAL SLIPS
    "codesdaddy.com" has all notes and practical slips for bca and bcs students as per new syllabus

    ReplyDelete
  7. So it is essential to comprehend that knowing a programming language or even a few isn't sufficient to keep in touch with a portion of the more complicated projects you have seen. https://hostinglelo.in/

    ReplyDelete
  8. To work with comprehension of the territorial ecological environment encompassing San Diego State University, it is urgent for us to consider the more extensive supportability viewpoint of the foundation. https://onohosting.com/

    ReplyDelete
  9. Along these lines, coders should make shields against clinical coding misrepresentation and misuse. https://sites.google.com/view/seoservicesindelhiindia

    ReplyDelete
  10. include
    typedef struct employee
    {
    int age;
    char name[10];
    }record;
    record employee[100];

    int readfile(record *a)
    {
    int i=0;
    FILE *fp;
    if((fp=fopen("emp.txt","r"))!=NULL)
    {
    while(!feof(fp))
    {
    fscanf(fp,"%d%s",&a[i].age,a[i].name);
    i++;
    }
    }
    return (i-1);
    }
    void writefile(record *a,int n)
    {
    int i=0;
    FILE *fp;
    if((fp=fopen("sorted_on_age_emp.txt","w"))!=NULL)
    {
    for(i=0;i=0 && a[j].age>t.age;j--)
    {
    a[j+1]=a[j];
    a[j]=t;
    }
    }
    }

    main()
    {
    int n;
    n=readfile(employee);
    insertion(employee,n);
    writefile(employee,n);
    }

    ReplyDelete