User Profile

Collapse

Profile Sidebar

Collapse
Nithya Kalyani
Nithya Kalyani
Last Activity: Nov 23 '07, 11:26 AM
Joined: Nov 23 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • The C programs given below contain errors, rectify them as needed

    Hi Expert,

    I m a student, can any one help me in finding the answer of below one.

    The C programs given below contain errors, rectify them as needed.
    a) void main()
    {
    char linebuf[80];
    char *lines[100];
    int i;

    for (i = 0; i < 100; i++)
    char *p = fgets(linebuf, 80, fp);
    if (p == NULL)
    break;
    lines[i] = p;
    }

    ...
    See more | Go to post

  • Write a function using Recursion to do the following

    Write a function using Recursion to do the following: You are the manager in a small factory. You have 7 workers and 7 jobs to be done. Each worker is assigned one and only one job. Each worker demands different pay for each job. (E.g.: Worker Archie demands $10 for welding, $15 for carpentry, etc. Worker Jughead demands $12 for welding, $5 for carpentry, etc.) Find the job-assignment which works out cheapest for you.
    See more | Go to post
No activity results to display
Show More
Working...