The fflush tag has no wiki summary.
0
votes
1answer
27 views
fseek(stdin,0,SEEK_SET) and rewind(stdin) REALLY do flush the input buffer “stdin”.Is it OK to use them?
I was thinking since the start that why can't fseek(stdin,0,SEEK_SET) and rewind(stdin) flush the input buffer since it is clearly written in cplusplusreference that calling these two functions flush ...
2
votes
1answer
33 views
Is there any difference without fflush in that code?
In cpp reference, it claims fflush is:
Causes the output file stream to be synchronized with the actual
contents of the file.
Indeed, I don't understand what it means. I just wonder, in that ...
1
vote
1answer
48 views
Can fseek(stdin,1,SEEK_SET) or rewind(stdin) be used to flush the input buffer instead of non-portable fflush(stdin)?
Since I discovered fflush(stdin) is not a portable way to deal with the familiar problem of "newline lurking in the input buffer",I have been using the following when I have to use scanf() :
...
0
votes
1answer
24 views
How to avoid fflush on stdout from hanging when disk is full?
I have a situation where disk becomes full and my program hangs because of fflush being used on stdout. I have put down a small code to mimic the problem. We have to redirect this programs stdout to a ...
9
votes
1answer
144 views
When is FILE flushed?
I have a good old C FILE file descriptor under Windows that is used by an output stream to write data to. My question is simple and yet I could not find the answer:
When is the content flushed to ...
0
votes
2answers
118 views
C, Different GCC, fflush() not working?
I'm a beginner programmer. I have a function that doesn't let float numbers or characters to be inputted. It was working fine with gcc 3.4.2, but now I updated to 4.7.1 and it isn't working properly. ...
0
votes
1answer
99 views
IO redirection and buffer issues, fflush and c
for my class we are to implement a shell with output redirection. I have the output redirection working, except my first command is always corrupted see:
$ echo this doesn't work
H<@?4echo
No ...
-1
votes
1answer
165 views
scanf is skipped even if using fflush
I have a scanf that doesn't accept input. The value is automatically zero, even if the variable wasn't initialized. The scanf is skipped:
printf("\nEnter the number of the student to be dropped: ");
...
0
votes
0answers
53 views
What is the difference between fflush() and std::cout.flush()?
What is the difference between fflush() and std::cout.flush()?
I am just printing some text on Console for a testcase.
Begin and end of testcase, i print text for while execution.
End of the test ...
0
votes
1answer
143 views
C: Synchronising two file pointers to the same file
I need two file pointers (FILE *) to operate alongside each other. One is to apply append operations and another is for reading and overwriting.
I need appends to the file from one pointer to be ...
0
votes
3answers
295 views
Force write of a file to disk
I'm currently implementing a ping/pong buffering scheme to safely write a file to disk. I'm using C++/Boost on a Linux/CentOS machine. Now I'm facing the problem to force the actual write of the file ...
1
vote
1answer
1k views
Flushing buffers in C
I'm confused; should fflush not be used to flush a buffer even if it is an output stream. What is it useful for? How do we flush a buffer in general?
-3
votes
1answer
194 views
fwrite() and file corruption
I'm trying to write a wchar array to a file in C, however there is some sort of corruption and unrelevant data like variables and paths like this
c.:.\.p.r.o.g.r.a.m. .f.i.l.e.s.\.m.i.c.r.o.s.o.f.t. ...
0
votes
2answers
78 views
file read from and file written to are not same
I am trying to read contents of a file that is some 3KB into a buffer and then writing the contents of the buffer into another file. The file in which data is written into contains only a part of data ...
0
votes
2answers
227 views
Is this buffer overflow?
Really confused if my program is behaving the way it's supposed to. this isn't homework, just a fun march madness predictor program I'm writing.
char buffer[20];
char team1_name[20]; // ...
3
votes
3answers
844 views
C: fflush function not working?
I can't seem to figure out what's wrong with this code:
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#define MAX 100
#define TRUE 1
#define ...
1
vote
0answers
322 views
windows console program stdout is buffered when using pipe redirection
i have a long run server program(say, program A) which is written in QT/c++. the program is not so stable so i decide to write a python script to restart it if it crashes. the problem is that the ...
0
votes
3answers
457 views
Output not printing without fflush(stdout)
I don't understand why sometimes I need to use fflush() and sometimes not.
My program is segfaulting at the moment and I am debugging it with print statements. When a program segfaults, does stdout ...
1
vote
2answers
88 views
The screen print is confusing ?
my code is :
#include <stdio.h>
void main( int argc, char** argv) {
printf("%s", argv[0]);
system("pwd");
}
The output is:
[river@localhost studio]$ ./a.out
...
-1
votes
3answers
1k views
using fflush on C++
Can someone help me using fflush in C++
Here is a sample code in C
#include <stdio.h>
using namespace std;
int a,b,i;
char result[20];
int main() {
scanf("%d %d\n", &a, &b);
for ...
3
votes
4answers
2k views
Oracle PL/SQL UTL_FILE.PUT buffering
I'm writing a large file > 7MB from an Oracle stored procedure and the requirements are to have no line termination characters (no carriage return/line feed) at the end of each record.
I've written a ...
1
vote
2answers
422 views
fflush fails on Visual C++ 2010
I'm trying to run some code but fflush() with the error:
Invalid file descriptor. File possibly closed by a different thread
Here is the relevant part of the code:
fhandle = ...
4
votes
3answers
807 views
Is using fflush(stdout) as fprintf() argument safe?
To I came upon this line of code:
fprintf(stdout, "message", fflush(stdout));
Note that the message does not contain any %-tag.
Is that safe in visual c++? fflush() returns 0 on success and EOF on ...
0
votes
4answers
517 views
My program crashes on fflush because of seg fault, … but not always?
What possible reasons do you know for the situation, described in the title? Here's what my bt looks like:
#0 0x00a40089 in ?? ()
#1 0x09e3fac0 in ?? ()
#2 0x09e34f30 in ?? ()
#3 0xb7ef9074 in ?? ...
1
vote
4answers
3k views
fflush(stdout) in c
Right when I am at fflush(stdout) and I break there in GDB, can I know what is there in stdout before I actually print it?
How can I know what is there in stdout at any point in time?
1
vote
4answers
314 views
fflush and while loop
I have been trying to use fflush to make a progress bar.
To test fflush, I wrote the small code below.
It works as it supposed to when I uncomment "sleep(1);"
but it works in an unexpected way if
...
1
vote
1answer
57 views
Keeping 'almost complete' logs even when system crashes
We have a c++ application (console) that runs on windows and unix.
This application used output files to output verbose log files of system calls/prints/etc.
The prblem is, that in certain occasion ...
10
votes
2answers
3k views
Using fflush(stdin)
So a quick google search for fflush(stdin) for clearing the input buffer reveals numerous websites warning against using it. And yet that's exactly how my CS professor taught the class to do it.
How ...
13
votes
1answer
5k views
Difference between fflush and fsync
I thought fsync() does fflush() internally so using fsync() on a stream is OK. But i am getting unexpected result when executed under network I/O.
My code snippet:
FILE* fp = fopen(file,"wb"); ...
0
votes
4answers
853 views
fflush and 'no disk space left'
I'm writing a program, some kind of database. While I was reading manual of fclose(3) I found that it calls fflush(3) to flush FILE* buffers to disk (actually to OS buffer, but it doesn't matter right ...
3
votes
5answers
10k views
I am not able to flush stdin
How to flush the stdin??
Why is it not working in the following code snippet?
#include <string.h>
#include <stdio.h>
#include <malloc.h>
#include <fcntl.h>
int main()
{
...


