Thread: URGENT: Help wanted...in C

  1. #16
    Woof, woof! zacs7's Avatar
    Join Date
    Mar 2007
    Location
    Australia
    Posts
    3,459
    This is the code i wrote...plz make it work for me
    No, Point out your specific problems.

  2. #17
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661
    > fgets(input, 7, stdin);
    Well you could start by not lying to fgets() about the true size of your buffers.

    Like
    fgets(input, sizeof input, stdin);

    > next = next->nextBook;
    What are you trying to do here?

    Hint: you also need a pointer to the head of the list.




    > which is to be submitted tommorrow
    Tough - email yourself a message to last week to tell yourself to get off your arse and start work on the problem. We're not here to catch your "hail mary" pass into the endzone in the hopes that someone will rescue you from your procrastination.
    It's a shame really. If you'd arrived with a few days to go and this start, there would have been plenty of time to get you sorted out.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Urgent Help Needed In Writing Algorithm!!
    By Vikramnb in forum C++ Programming
    Replies: 1
    Last Post: 01-09-2009, 12:46 PM
  2. Getting a message with wanted lparam from queue
    By BrownB in forum Windows Programming
    Replies: 6
    Last Post: 12-24-2007, 08:37 PM
  3. BitWise Newbie - Needs Urgent Help
    By frodonet in forum C Programming
    Replies: 15
    Last Post: 09-26-2007, 12:58 PM
  4. Developers Wanted
    By Quasicom in forum Projects and Job Recruitment
    Replies: 2
    Last Post: 08-24-2005, 12:46 AM
  5. I just wanted....
    By ILoveVectors in forum C++ Programming
    Replies: 0
    Last Post: 06-22-2005, 09:29 PM