Tagged Questions
1
vote
4answers
98 views
I have debug it for 4 hours,but I still can't find the BUG
This is program is input some string from a file, then, push strings into LineBuf one by one, after we push one string into LineBuf, print LineBuf,then, make LineBuf empty.
This is my code:
#include ...
1
vote
1answer
468 views
freopen_s on stdout causes problems with GetConsoleScreenBufferInfo on Windows
To temporarily redirect stdout to a file, I'm doing:
printf("Before");
freopen_s(&stream, "test.txt", "w", stdout);
printf("During");
freopen_s(&stream, "CONOUT$", "w", stdout);
...
0
votes
1answer
65 views
How can i use freopen() to redirect stdout & stdin in thread vise log-file in multi-thread application?
Extened question from In multi thread application how can i redirect stderr & stdout in separate file as per thread?
see some how i want to keep all printf and error/warning message produced in ...
0
votes
1answer
66 views
C/C++ streams and files
I have the following code:
int checkCorrectness(int i,char *iStr)
{
if(atoi(iStr) == i)
return 1;
return 0;
}
void foo(int i)
{
printf("inside foo %d\n",i);
}
void print()
{
char ...
0
votes
2answers
100 views
Want to write in stdout after closing the file opened using freopen
I'm using fork(). However, before executing fork(), I open a file (say a.txt) using freopen for writing. Now the child process redirects the output of execlp to a.txt. After terminating the child ...
0
votes
3answers
144 views
Output into file and command line
I read about freopen to redirect all printf to a file, but I would like the output to be printed on the screen as well. Is there an easy way to redirect the printfs to a file and get the cmd line ...