Thread: C / C++ & OS
View Single Post
  #2 (permalink)  
Old June 29th, 2007, 07:23 AM
TotcoS TotcoS is offline
Registered User
 
Join Date: Jun 2007
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to TotcoS Send a message via MSN to TotcoS Send a message via Yahoo to TotcoS
Default

The only thing I can think of is using system().

Code:
#include <iostream>
using namespace std;

int main() {
    system("set");
    cout << endl;
    cin.get();
    return(0);
}
I don't need a signature =D
Reply With Quote