This tag is for questions regarding "Standard I/O", i.e. I/O using the facilities in the C header <stdio.
I am new to c programming and I was coding some simple programs "Hello world" style. In all of these …
c include stdioscanf(" %[^\n]",line); A friend of mine suggested that using fgets() to read a line as input would be a …
c scanf stdioWhat is the exact difference between the getch and getchar functions?
c io console-application stdio c-standard-libraryI've started learning some C as a hobby and have blindly used FILE as a declaration for file pointers for …
c file stdioI'm writing a program to parse some data saved as text files. What I am trying to do is find …
c++ iostream stdioIf I try to run the following simple code under Cygwin on Windows 7, #include <stdio.h> int main() { …
c cygwin stdioI know in C++, you're able to peek at the next character by using: in.peek();. How would I go …
c filestream stdio peekputs "hi" puts "bye" I want to store the STDOUT of the code so far (in this case hi \nbye …
ruby stdio