Thread: Program to register students. C question, data structure.

  1. #1
    Registered User
    Join Date
    Jun 2021
    Posts
    1

    Program to register students. C question, data structure.

    I need a program to register several students. For each student it must be registered enrollment, two grades and final average. The data must be stored in a sequential list. The program must have the following menu:

    1 - Register Students(obs. The students must be registered at the end of the list.)

    2 - List of Approved Students.

    Observations:

    - Create following functions:

    *create_list();
    *release_list(List *list);
    *insert_final_list(List *list, Student student);
    *print_data_list(list *list)

    The program must allow to register up to 10 students.
    Last edited by Mr.Castle; 06-24-2021 at 05:07 PM.

  2. #2
    Registered User
    Join Date
    May 2009
    Posts
    4,183
    "...a computer is a stupid machine with the ability to do incredibly smart things, while computer programmers are smart people with the ability to do incredibly stupid things. They are,in short, a perfect match.." Bill Bryson

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 15
    Last Post: 10-25-2011, 10:56 PM
  2. displaying students' data within a box
    By jackson6612 in forum C++ Programming
    Replies: 5
    Last Post: 05-07-2011, 12:54 PM
  3. data structure question
    By miami_victor in forum C++ Programming
    Replies: 13
    Last Post: 12-31-2004, 12:56 AM
  4. Data structure question.
    By ronenk in forum C Programming
    Replies: 9
    Last Post: 10-03-2004, 10:58 AM

Tags for this Thread