From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Michael Nabarro" To: Subject: freopen function Date: Thu, 20 Sep 2001 01:57:00 -0000 Message-id: X-SW-Source: 2001-09/msg00787.html I'm trying to use freopen to redirect stdout to a file. This works fine but I then want to redirect stdout back to the console and am having trouble doing this. I have used the following two calls. freopen("temp","w",stdout); freopen("CON","w",stdout); Apparently CON is meant to be the console but instead a file called CON is created. I'd greatly appreciate any suggestions. Thanks Michael