Tagged Questions
This tag is for questions regarding "Standard I/O", i.e. I/O on file descriptors 0 (stdin), 1 (stdout) and 2 (stderr).
18
votes
14answers
2k views
Which I/O library do you use in your C++ code?
In new C++ code, I tend to use the C++ iostream library instead of the C stdio library.
I've noticed some programmers seem to stick to stdio, insisting that it's more portable.
Is this really the ...
12
votes
9answers
2k views
What's the best way to return a random line in a text file using C?
What's the best way to return a random line in a text file using C? It has to use the standard I/O library (<stdio.h>) because it's for Nintendo DS homebrew.
Clarifications:
Using a header in ...
11
votes
3answers
518 views
Does fprintf use malloc() under the hood?
I want a minimal o-damn-malloc-just-failed handler, which writes some info to a file (probably just standard error). I would prefer to use fprintf() rather than write(), but this will fail badly if ...
8
votes
2answers
245 views
stdin seems much slower than stdout (python). Why?
I have two python programs (one is a subprocess) that need to communicate with each other. Currently I am doing that through stdin and stdout. However, writing to the subprocess's stdin seems ...
8
votes
13answers
775 views
What is a good programming pattern for handling return values from stdio file writing functions
I'm working on some code that generates a lot of
ignoring return value of ‘size_t fwrite(const void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result
warnings when compiled ...
7
votes
6answers
11k views
Rerouting stdin and stdout from C
I want to reopen the stdin and stdout (and perhaps stderr while I'm at it) filehandles, so that future calls to printf() or putchar() or puts() will go to a file, and future calls to getc() and such ...
6
votes
3answers
693 views
Java + Eclipse: Synchronize stdout and stderr
I use Eclipse. When I have an application like this:
write 20 times 'Hello World\n' to stdout
write 'ERROR\n' to stderr
write 5 times 'Hello World\n' to stdout
The output looks many times like ...
6
votes
4answers
2k views
Concurrent/Non-blocking console keyboard input in Java
I'm working on a MUD in java. I read player input every tick, but I'm using Scanner which uses blocking operations. I want to have non-blocking input. I've looked at the nio package which has a ...
6
votes
3answers
2k views
C equivalent to fstream's peek
I know in C++, you're able to peek at the next character by using: in.peek();.
How would I go about this when trying to "peek" at the next character of a file in C?
6
votes
3answers
1k views
C equivalent of autoflush (flush stdout after each write)?
In Perl, I can type:
$|++;
and anything printed to STDOUT will be automatically fflush()ed.
Is there an equivalent in C? In other words, is there some way I can tell stdio to automatically fflush ...
6
votes
3answers
2k views
Why is fread reaching the EOF early?
I am writing a C library that reads a file into memory. It skips the first 54 bytes of the file (header) and then reads the remainder as data. I use fseek to determine the length of the file, and then ...
5
votes
3answers
91 views
What does “< /dev/null >& /dev/null” at the end of a command do?
One of the scripts I run over ssh was hanging and I found a solution for it on this site:
http://www.snailbook.com/faq/background-jobs.auto.html
The site resolves the problem by adding this to the ...
5
votes
1answer
233 views
Is there a Windows equivalent to fdopen for HANDLEs?
In Unix, if you have a file descriptor (e.g. from a socket, pipe, or inherited from your parent process), you can open a buffered I/O FILE* stream on it with fdopen(3).
Is there an equivalent on ...
5
votes
1answer
125 views
How to redirect the STD-Out of an **existing** process in C#
I can easily start a process with it's STD I/O redirected but how can I redirect the STD I/O of an existing process.
Process process = Process.GetProcessById(_RunningApplication.AttachProcessId);
...
5
votes
6answers
487 views
Java: how to abort a thread reading from System.in
I have a Java thread:
class MyThread extends Thread {
@Override
public void run() {
BufferedReader stdin =
new BufferedReader(new InputStreamReader(System.in));
String msg;
...
5
votes
5answers
2k views
Code for printf function in C [closed]
Possible Duplicate:
source code of c/c++ functions
I was wondering where I can find the C code that's used so that when I write printf("Hello World!"); in my C programm to know that it has ...
5
votes
1answer
570 views
String Stream in C
print2fp(const void *buffer, size_t size, FILE *stream) {
if(fwrite(buffer, 1, size, stream) != size)
return -1;
return 0;
}
How to write the data into string stream instead of File stream?
5
votes
4answers
444 views
how to read a string from a \n delimited file
I'm trying to read a return delimited file. full of phrases.
I'm trying to put each phrase into a string.
The problem is that when I try to read the file with
fscanf(file,"%50s\n",string);
the ...
5
votes
12answers
831 views
How to redirect output away from /dev/null
I have an application that runs the a command as below:
<command> <switches> >& /dev/null
I can configure <command>, but I have no control over <switches> . All the ...
5
votes
7answers
513 views
how to stop reading from file in C
I am just trying to read each character of the file and print it out but when the file finishes reading, but I am getting a bunch of ? after it finishes reading. How do I fix it?
#include ...
5
votes
2answers
1k views
forcing a program to flush its standard output when redirected
i have a closed source program that prints output to standard output. i need to parse the output. so i redirect the output to a fifo (from which i can read in the parent process that forks and execs ...
5
votes
5answers
455 views
char *a, *b; what type is (b-a) and how do I printf it?
{
char *a, *b;
printf("%lx\n",(b-a));
}
Usually works, in fact, I can't imagine it giving a warning or failing on a 32-bit or 64-bit machine. But is that the proper thing to do for ANSI C and ...
5
votes
6answers
2k views
Getting another program's output as input on the fly
I've two programs I'm using in this way:
$ c_program | python_program.py
c_program prints something using printf() and python_program.py reads using sys.stdin.readline()
I'd like to make the ...
5
votes
5answers
13k views
How can you flush a write using a file descriptor?
It turns out this whole misunderstanding of the open() versus fopen() stems from a buggy I2C driver in the Linux 2.6.14 kernel on an ARM. Backporting a working bit bashed driver solved the root ...
4
votes
3answers
53 views
How to tell GDB to flush the stdio of the program being debugged
The stdio is usually buffered. When I hit a breakpoint and there's a printf before the breakpoint, the printed string may still be in the buffer and I can not see it.
I know I can flush the stdio by ...
4
votes
6answers
190 views
C without stdio, what is possible?
I've been interested in programming an operating system for some time. Delving through a few different sites, I've come across an interesting concept (to paraphrase): if you start writing your ...
4
votes
1answer
200 views
Why doesn't `putStrLn getLine` work?
I'm complete newbie on Haskell.
My Haskell script with GHCi,
Prelude> let a = putStrLn getLine
makes an error like this.
<interactive>:1:17:
Couldn't match expected type `String'
...
4
votes
5answers
858 views
C fgets versus fgetc for reading line
I need to read a line of text (terminated by a newline) without making assumptions about the length. So I now face to possibilities:
Use fgets and check each time if the last character is a newline ...
4
votes
5answers
221 views
What does C++ iostreams have to offer in comparison with the C stdio library? [closed]
Possible Duplicate:
Which I/O library do you use in your C++ code?
I asked this question in a comment to another question, and I was asked to make it a proper question instead.
Why do I ...
4
votes
2answers
157 views
Making fgets issue longer read() calls on linux
I'm reading quite large lines(up to 128K) of text using fgets. I'm seeing excessive context switching on the server, using strace I see the following:
read(3, "9005 10218 00840023102015 201008"..., ...
4
votes
2answers
426 views
fread Only first 5 bytes of .PNG file
I've made a simple resource packer for packing the resources for my game into one file. Everything was going fine until I began writing the unpacker.
I noticed the .txt file - 26 bytes - that I had ...
4
votes
2answers
201 views
Filehandle for Output from System Command in Perl
Is there a filehandle/handle for the output of a system command I execute in Perl?
4
votes
3answers
334 views
who free's setvbuf buffer?
So I've been digging into how the stdio portion of libc is implemented and I've come across another question. Looking at man setvbuf I see the following:
When the first I/O operation occurs on
a ...
4
votes
2answers
126 views
Detecting background operation
In C, what is the way to detect a program was called in "background mode" ?
I have a program I would like to launch either interactively or in background.
How can I detect I should not be reading ...
4
votes
6answers
2k views
Tried and true simple file copying code in C?
This looks like a simple question, but I didn't find anything similar here.
Since there is no file copy function in C, we have to implement file copying ourselves, but I don't like reinventing the ...
3
votes
4answers
203 views
stdio.h not standard in C++?
I know most compilers allow both:
#include <stdio.h>
//and
#include <cstdio>
But someone argued that <stdio.h> is not actually C++ standard.
is that true?
3
votes
4answers
421 views
Writing to a file and console in C
I am trying to write a function that allows me to write to the console and a file in C.
I have the following code but i realized that it does not allow me to append arguments (like printf).
#include ...
3
votes
1answer
225 views
How can I get those two processes (programs) talk to each other directly using pipes?
Program A, is a c program that endlessly, receives input in stdin, process it and output it to stdout.
I want to write program B (in python) so it will reads A's output, and feed it back with ...
3
votes
2answers
763 views
python 2.7 / exec / what is wrong?
I have this code which runs fine in Python 2.5 but not in 2.7:
import sys
import traceback
try:
from io import StringIO
except:
from StringIO import StringIO
def CaptureExec(stmt):
oldio ...
3
votes
4answers
558 views
stdlib and colored output in C
I am making a simple application which requires colored output. How can I make my output colored like emacs and bash do?
I don't care about Windows, as my application is only for UNIX systems.
...
3
votes
4answers
84 views
Security of stdio communcations
In a program I am developing (Linux), I need very simple text-based IPC. It would be very easy to use a standard input/output pipe for this. Can I trust that messages sent to a process' stdin cannot ...
3
votes
4answers
206 views
Ruby stdio consts and globals, what are the uses?
Ruby has constants and global variables for stdio.
Namely, the consts STDIN, STDOUT, STDERR, and their variable counterparts, $stdin, $stdout, $stderr.
I understand the difference between a constant ...
3
votes
2answers
1k views
freopen: reverting back to original stream
I needed to forward stdout to different files to separate some prints produced and the reverting back to normal stdout.
I used freopen to switch to the file in this way:
char name[80];
memset(name, ...
3
votes
2answers
684 views
Close a FILE pointer without closing the underlying file descriptor
By using fdopen(), fileno() it's possible to open streams with existing file descriptors. However the proper way to close a file, once you've opened it with a stream is to fclose() the FILE pointer. ...
3
votes
3answers
181 views
Is it ‘safe’ to remove() open file?
I think about adding possibility of using same the filename for both input and output file to my program, so that it will replace the input file.
As the processed file may be quite large, I think ...
3
votes
3answers
187 views
Determining the (opened) filename from a FILE *
Given a stdio FILE * pointer, is there a method by which I can discover the name of the (opened) file?
2
votes
2answers
50 views
C: multi-processes stdio append mode
I wrote this code in C:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
void random_seed(){
struct timeval tim;
gettimeofday(&tim, ...
2
votes
3answers
98 views
how does the size of compiled binaries depend on the used libraries? c/c++
Last week I found a simple game on the web called killallcops.exe.
I studied the binaries and wondered why the programm is that big. (About 460k)
So I rewrote the game using iostream
#include ...
2
votes
3answers
90 views
C using fread to read an unknown amount of data
I have a text file called test.txt
Inside it will be a number, it may be as follows:
1
2391
32131231
3123121412
I.e it could be any size of number, from 1 digit up to x digits.
The file will only ...
2
votes
1answer
59 views
How to use paramiko to talk interactivity with a remote application?
I am trying to use paramiko to interatively speak with an command line application, but I'm doing something wrong.
# that's the echo.py, the script I am connecting to via SSH
import sys, time
while ...