Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

quadruple karma as I have posted this four times needing help with no avail this

ID: 3635709 • Letter: Q

Question

quadruple karma as I have posted this four times needing help with no avail


this is the assignment

I just need the menu and header files the .exe parts i have completed. teacher didn't go over header's, classes, and structures. the assignment is to create a menu driven program inside a function with switch with only two directives to call the function
menu has 5 options to open open 4 .exe programs and the last to close the program with yes or no .... classes must be in external headers and included in project
include one additional function in a separate header file the menu should open the .exe file allow you close it or run again and to return to the menu and choose another option. to exit the menu after choosing 5 it will ask for a confirmation.
be sure and validate your input

I WELCOME ANY ADDITIONAL INPUT OR WORKING CODE AS I AM STALLED AND CAN GO NO FURTHER WITH THE FOLLOWING ERROR IN DEV C+

C:UsersMAGICM~1AppDataLocalTempcc2tUcaa.o(.text+0x290) In function `main':
[Linker error] undefined reference to `openFile(std::basic_fstream<char, std::char_traits<char> >&)'
C:UsersMAGICM~1AppDataLocalTempcc2tUcaa.o(.text+0x290) ld returned 1 exit status


Explanation / Answer

Underfined reference error - means the linker can't figure out the location of openFile(..) function call. If u r using C++ and u might use the member function open() of fstream class to open the file. example: int main () { fstream filestr; filestr.open ("test.txt", fstream::in); // >> i/o operations here