My professor has given us a program that we must fill in the blanks of missing functions, and then once complete, turn this finished project .c file in as our final project for the class.
Problem is, she has included escape sequences in her code, which I cannot get to work(like all the other students in the class).
My visual studio 2010 will run the program, but the output looks ridiculous and jumbled. A few sequences she uses are...
printf( "\033[2J"); //clear screen
printf( "\033[s");//save cursor position
printf( "\033[3;1H");//go to line 3
She has given us directions to run ansi160\x64, and I have tried running this and researching this for 4 hours now(I was up late last night) and could not get this to work. No matter what extension I used, it's location, etc. So simply, I need to have my ouput window on visual studio to read these escape sequences so I can debug my program and see it's output window via a window that will allow me to read escape sequences.
Edit: I'm on a Mac, with bootcamp, and partitioned to run Windows 7(if this matters).