F finnm macrumors newbie Original poster Jul 20, 2008 #1 how do i PAUSE and Clearscreen in Xcode C++? i used system(PAUSE) in C++ express.
yeroen macrumors 6502a Jul 20, 2008 #2 Are you asking how to pause program execution in C++ and clear the terminal screen? By C++ express do you mean coding C++ in Visual Studio express? There is no such thing as 'XCode C++' or 'C++ express'. These are just IDEs.
Are you asking how to pause program execution in C++ and clear the terminal screen? By C++ express do you mean coding C++ in Visual Studio express? There is no such thing as 'XCode C++' or 'C++ express'. These are just IDEs.
lee1210 macrumors 68040 Jul 20, 2008 #3 pause is not system independent. Use sleep or usleep library functions for this. Clearscreen is term type dependent and the window XCode uses to display console I/O may not support this. -Lee
pause is not system independent. Use sleep or usleep library functions for this. Clearscreen is term type dependent and the window XCode uses to display console I/O may not support this. -Lee