To write a COMPLETE C program) Prepare a menu-driven C program for Inserting and deletion operations for a stack structure of student information which has the following structure declaration. struct student { char F_name[12]; char L_name[12]; int Std_id; char Std_address[20]; char Std_email[30]; char Std_mobile[12]; char department[2];/* CE=Computer Engineering, E=English */ }; struct stack {struct student std_info[10]; int top; }; Define the following Initialized array of structure in your program. struct student COME205_Students [10]={ ”Ahmet” ,”Osman”, 12005310,”Gaziantep”,”Ahmet@gmail.com”, “05531001020”,“CE”,88, ”Sevgi” ,”Mert”, 12005311,”Konya”,” Sevgi@gmail.com”, “05531141990”,“E”,81, ”Osman”, ”Kemal”, 12005312,”Istanbul”,” Osman@gmail.com”, “05531331023”,“CE”,75, ”Mert”, ”Osman”, 12005313, ”Antalya”,” Mert@gmail.com”, “05531041424”,“CE”,70, ”Ayse”,”Omer”, 12005314,”Ankara”,” Ayse@gmail.com”, “05531087412”,“E”,80, ”Kemal”, “ali”, 12005315, ”Izmir”,” Kemal@gmail.com”, “05535471028”,“CE”,88, ”Lale”, ”Can”, 12005316, ,”Trabzon”,” Lale@gmail.com”, “05534712036”,“E”,75, ”Sefer”, ”Mert”, 12005317, ”Mardin”,” Sefer@gmail.com”, “05531078621”,“CE”,65, ”Meral”, ,”Jemal”, 12005318,”Bursa”,” Meral@gmail.com”, “05531003578”,“E”,60, ”Demet”, ”Kemal”, 12005319,”Ankara”,” Demet@gmail.com”, “05531841220”,“E”,87}; The Following steps of operations will take place in your menu-driven program. 1. Create a stack using COME205_Students array structure (copy from array into the stack will be done). 2. Using the stack which is populated at step 1, Create two new stacks, one for Computer Engineering students and one for English students. These new stacks will be created using department fields for determining Computer Engineering (CE) and English (E) stack. 3. Print the contents of the Computer Engineering stack and English stack. 4. Delete the contents of THE THREE stacks. 5. End of operation

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter18: Stacks And Queues
Section: Chapter Questions
Problem 1TF
icon
Related questions
Question

(To write a COMPLETE C program)

Prepare a menu-driven C program for Inserting and deletion operations for a stack structure of student information which has the following structure declaration.

struct student
{ char F_name[12];
char L_name[12];
int Std_id;
char Std_address[20];
char Std_email[30];
char Std_mobile[12];
char department[2];/* CE=Computer Engineering, E=English */
};
struct stack
{struct student std_info[10]; int top;
};
Define the following Initialized array of structure in your program.
struct student COME205_Students [10]={
”Ahmet” ,”Osman”, 12005310,”Gaziantep”,”Ahmet@gmail.com”,
“05531001020”,“CE”,88,
”Sevgi” ,”Mert”, 12005311,”Konya”,” Sevgi@gmail.com”,
“05531141990”,“E”,81,
”Osman”, ”Kemal”, 12005312,”Istanbul”,” Osman@gmail.com”,
“05531331023”,“CE”,75,
”Mert”, ”Osman”, 12005313, ”Antalya”,” Mert@gmail.com”,
“05531041424”,“CE”,70,
”Ayse”,”Omer”, 12005314,”Ankara”,” Ayse@gmail.com”,
“05531087412”,“E”,80,
”Kemal”, “ali”, 12005315, ”Izmir”,” Kemal@gmail.com”,
“05535471028”,“CE”,88,
”Lale”, ”Can”, 12005316, ,”Trabzon”,” Lale@gmail.com”,
“05534712036”,“E”,75,
”Sefer”, ”Mert”, 12005317, ”Mardin”,” Sefer@gmail.com”,
“05531078621”,“CE”,65,
”Meral”, ,”Jemal”, 12005318,”Bursa”,” Meral@gmail.com”,
“05531003578”,“E”,60,
”Demet”, ”Kemal”, 12005319,”Ankara”,” Demet@gmail.com”,
“05531841220”,“E”,87};

The Following steps of operations will take place in your menu-driven program.
1. Create a stack using COME205_Students array structure (copy from array into the stack will be done).
2. Using the stack which is populated at step 1, Create two new stacks, one for Computer Engineering students and one for English students. These new stacks will be created using department fields for determining Computer Engineering (CE) and English (E) stack.
3. Print the contents of the Computer Engineering stack and English stack.
4. Delete the contents of THE THREE stacks.
5. End of operation

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Functions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning