Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C++ Use Notepad to create a new file named exam1_2.cpp with the following two lines: /* Student: Your FullName Course: CSC1133 */ Next to the
C++
Use Notepad to create a new file named "exam1_2.cpp" with the following two lines: /* Student: Your FullName Course: CSC1133 */ Next to the above two lines, create a C++ structure named "File" that has the following elements. Element Attribute Data Type name C++ variable string next C++ pointer File In the "main()" function create a singly linked list that links the following items in a sequence. Item index C:\pictures\m231.png 0 C:\pictures\m185.png 1 C:\pictures\m472.png 2 C:\pictures\m316.png 3 Display the elements of the linked list according to the sequence 0->1->2->3. A sample output is: C:\pictures\m231.png C:\pictures\m185.png C:\pictures\m472.png C:\pictures\m316.png Capture screen shot(s) similar to the above one(s) and paste it/them to the .doc file (or.docx). Compress the "exam1_2.cpp", "exam1_2.exe", and "exam1_2.doc" (or docx) files to a .zip file named "exam1_2.zip". Upload only the .zip file. ading criteria: The "arr" array must be declared and created. You must use the pointer "ptrr" to access element of the "arr" array. All required features must be well coded. No partial credit is givenStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started