This tag is for questions regarding "Standard I/O", i.e. I/O using the facilities in the C header <stdio.
I was reading the C programming book by Kernighan and and came across putc and fputc. I didn't quite understand …
c stdioIn Perl, I can type: $|++; and anything printed to STDOUT will be automatically fflush()ed. Is there an equivalent in …
c stdioI have a Java thread: class MyThread extends Thread { @Override public void run() { BufferedReader stdin = new BufferedReader(new InputStreamReader(System.…
java stdioIn Unix, if you have a file descriptor (e.g. from a socket, pipe, or inherited from your parent process), …
c winapi stdioThis is tiny snippet of my code. #include <stdio.h> #include <unistd.h> #include <stdlib.…
c declaration pipe implicit stdioI'm writing a library and want to make it absolutely resource-agnostic which also means that library should live with user-supplied …
c memory-management stdioI am puzzled by a crash I keep getting due to an error at this section of code: FILE *fid200; …
c++ objective-c ios fopen stdio