Question: needed help with this in visual studio 2 0 1 7 Submission Instructions Submit by midnight on the due date. If you have other questions

needed help with this in visual studio 2017
Submission Instructions
Submit by midnight on the due date.
If you have other questions you need to ask, then feel free to use the instructor's regular
email account (troden(a)
lamar.edu).
If you need to attach multiple files then compress all files into a single zip file. Use zip
format (not 7zip, rar or any other compressed format). Microsoft Windows has zip
functionality built in. Put all your files into a single directory and right click on the
directory name and select "Send To Compressed (zipped) Folder."
General
Using Visual Studio, do the following:
Create a project named "mylibrary". The output of this project is a static library
(*lib file). The project should contain 2 source code files:
a) mylibrary.cpp
contains one function named PrintString() that takes one parameter - an
ASCIIZ string. The function should output the string to the console
window.
b) mylibrary h
contains the prototype for the PrintString function.
void PrintString (char *str);
Using Project Properties, set custom Post-Build events that:
a) Copy mylibrary.lib to c: mycode lib
b) Copy mylibrary h to c: mycode inc
*You should those three directories first:
c. mycode
c: mycode lib
c: mycode inc
Create a project named "myapp". The output of this project is an executable
(*exe file) console program. The project should contain 1 source code file:
a) myapp.cpp
contains a main() function. The function should call PrintString() passing
an ASCIIZ string (ASCII characters with a zero byte at the end) with your
name (first and last).
You can link mylibrary lib (from c: mycode lib) into the exe using any of the 3 methods
discussed by the instructor (pragma, project properties, or drag the filename into Solution
Explorer).
 needed help with this in visual studio 2017 Submission Instructions Submit

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!