| UMBC CMSC 211 Spring 2000 |
For additional help on using Visual C+ This is an aid built by UMBC student Jeff Walton. (Thanks, Jeff)
The C program will declare two strings and initialize one of them with the string "Move me!". Print out both strings, showing the starting conditions.
Use the assembly language to move the data from the first string to the second string.
Then return to C and print out the two strings a second time, showing that the message is now in the second string only.
The output of your program will look like this:
String A: Move me! String B: Back from assembly language String A: String B: Move me!