This tag is for questions regarding "Standard I/O", i.e. I/O using the facilities in the C header <stdio.
I'm trying to compile a program in C on OS X 10.9 with GCC 4.9 (experimental). For some reason, I'm getting the …
c gcc stdioI am trying to Build a Solution on Visual Studio Community 2017, but I keep getting the error "Cannot open include …
c++ visual-studio visual-studio-2017 stdioPossible Duplicate: source code of c/c++ functions I was wondering where I can find the C code that's used …
c printf stdioI have significant trouble with this... printf("> "); int x = getchar(); printf("got the number: %d", scanf("%d", &x)); …
c stdioI want to reopen the stdin and stdout (and perhaps stderr while I'm at it) filehandles, so that future calls …
c redirect stdioI am using the following C code to take input from user until EOF occurs, but problem is this code …
c stdio