Thread: Adding and Deleting Birthday Reminders

  1. #1
    Registered User
    Join Date
    Mar 2012
    Posts
    13

    Adding and Deleting Birthday Reminders

    The code I'm creating has 4 options: 1)Add a birthday reminder, 2) Delete a birthday reminder, 3)Display a calendar, and 4)Closes the program.

    How do I add birthday reminders (Name + date of birth of person)?

    Option 2 is suppose to view all saved birthday reminders. The user will then input an number and the program should delete the birthday reminder corresponding to the number. How do I delete a specific reminder?

    In option 3, I've already gotten how to display the calendar for a given month and year, but it should also display all birthday reminders for that month. How do I display birthday reminders for a specified month?

    Can anyone help me?
    Any hint or tips would be appreciated.


    PS We're using linked lists.

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,660
    > PS We're using linked lists.
    Begin by writing a pair of functions to
    - insert a new node into an existing linked list.
    - remove a node from a list
    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. Creating and deleting directories and deleting files
    By fguy817817 in forum C Programming
    Replies: 1
    Last Post: 04-08-2009, 07:26 AM
  2. It's Meh Birthday.
    By Krak in forum A Brief History of Cprogramming.com
    Replies: 8
    Last Post: 01-30-2005, 01:38 PM
  3. Birthday
    By LuckY in forum A Brief History of Cprogramming.com
    Replies: 11
    Last Post: 11-18-2003, 01:41 PM
  4. Replies: 4
    Last Post: 06-22-2002, 12:23 PM
  5. need help deleting a deleting a struct from file
    By Unregistered in forum C Programming
    Replies: 5
    Last Post: 05-20-2002, 05:38 AM