What we want to do in this assignment is we want to break


In this assignment, we will still work on our main.c file that we used in assignment 0. So far we have been working with the code all on one file which is not a good programming practice. What we want to do in this assignment is we want to break our main file into three files: interface, client, and implementation. What you will need to decide the following:

- There is no functions in the main file we have, only the main method, how can you break the main method into smaller ones, each specific for a certain task? What name are you going to use for these methods? what would be the input for the methods?

- Based on how you are going to break the main into smaller methods, create your interface to include the method prototype

- Remaining is the client. Connect your methods and call them in the correct order to obtain the same behavior we had before for the main.c file.

Things to consider while programming:

- No global variables are allowed

- For the method parameters, chose only the ones that need to be sent. If a parameter only needed by a single method, then it has to be a local variable to this method.

What you need to submit:

- The interface, implement, and client files, including fully document code explaining what every method does

- In addition, similar to assignment 0, you need to include a block comment that includes your name and the program version

- README file explaining what you did.

- Compress all the files together and submit through blackboard

Attachment:- main copy.rar

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: What we want to do in this assignment is we want to break
Reference No:- TGS01623192

Expected delivery within 24 Hours