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

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education