This tag is for questions regarding "Standard I/O", i.e. I/O using the facilities in the C header or using the standard streams stdin, stdout, stderr.
0
votes
2answers
28 views
fclose causing exc_bad_access
I can't figure out why this fclose() in my c program is causing bad access. It was working fine and then I changed the if condition to only print when the strings do not equal eachother and suddenly ...
2
votes
2answers
44 views
Where to find struct _IO_FILE
I was looking through /usr/include/stdio.h
and happened to come across the following piece of code.
/* Standard streams. */
extern struct _IO_FILE *stdin; /* Standard input stream. */
...
0
votes
2answers
68 views
Jump to end of specific line
I am trying to change my cursor position in an opened file.
fp = fopen("dirty", "a+");
fprintf(fp, "Text at end of file");
// seek to end of third line (eg.)
fprintf(fp, "Text at end of third ...
0
votes
2answers
47 views
stack smashing error
This is my code:
#include <mysql.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char *server = "nope";
char *user = "nope";
char *password = "nope";
...
1
vote
1answer
68 views
Redirecting Python Interpreter's IO
I've written a simple debugger program that can execute a console program and send its output to "out" and "err" files and retrieve its input from an "in" file. Now, I want to extend its functionality ...
0
votes
0answers
73 views
Read string from file and do find and replace
I have an .html file (input.html) and a .txt file (diff.txt) in which there is some HTML code.
I read from file diff1.txt the HTML code and I save it in a string.
FILE *filetxt;
long len;
char *buf;
...
0
votes
1answer
65 views
Unexplained errors due to fopen() and FILE
I can't understand the errors that crop up due to the following code.I am trying to open a file using fopen(), but the errors make no sense to me.So please explain the whole thing.
10 - FILE * ...
-1
votes
1answer
87 views
Program should give to a word special numerical value (but…)
There's a program I wrote in C, it works perfectly. When I tried to translate it into the language C# it was not compiling. The problem was that C# doesn't know the meaning of scanf ("%19s" , ...
0
votes
1answer
60 views
Term::ReadKey, non-blocking read in raw mode: Detect EOF?
When I pipe stuff into my program, it does not seem to get any character like 0x4 to indicate EOF.
$ echo "abc" | map 'cat'
saw a: \x61
saw b: \x62
saw c: \x63
saw
: \x0A
zzzbc
^C
I have to press ...
1
vote
0answers
91 views
Make sed not buffer by lines
I'm not trying to prevent sed from block-buffering! I am looking to get it to not even line-buffer.
I am not sure if this is even possible at all.
Basically there is a big difference between the ...
2
votes
3answers
45 views
Removing text after character c
I have some text that looks like this, from an input file:
func:
sll $t3, $t4, 5 # t1 = (i * 4)
add $t3, $a1, $t4 # t2 contains address of array[i]
sw $t1, 4($t2) # ...
-2
votes
2answers
86 views
How can we restrict user to enter characters and also integers greater than specified length in C?
I'm trying to create a C program on OTP (One Time Pad) encryption. The program takes a string to be encrypted from the user. Then it has to ask for the length of the key before taking the key (in ...
1
vote
1answer
70 views
Printf is not a part of c language. What actually happens when following PRINTF's code is executed from stdio.h?
int printf (const char *__format, ...)
{
register int __retval;
__builtin_va_list __local_argv; __builtin_va_start( __local_argv, __format );
__retval = __mingw_vprintf( __format, __local_argv ...
0
votes
2answers
87 views
Sorting files in C
I am trying to write a program which opens up a text file, reads from the file, changes upper case to lower case, and then counts how many times that word has occurred in the file and prints results ...
2
votes
0answers
49 views
Klibc: understanding memory allocation done for _IO_file_pvt struct
In the klibc implementation of the C standard library. The FILE struct is defined as follows:
struct _IO_file {
int _IO_fileno; /* Underlying file descriptor */
_Bool _IO_eof; /* End ...
2
votes
1answer
87 views
Is it safe to have asprintf use a non-NULL target pointer that is also a input?
tl;dr Can asprintf be used naively for concatenation without invoking a temporary pointer?
The function asprintf introduced by GNU and adopted in several other clib implementations is a tempting ...
1
vote
3answers
57 views
getc() does not return carrige return '\r' character
I have a text file "hello.txt" with some sample text. When I open the file in a hex editor, I can see \r\n characters for the newline. But when I read the file in a C program with getc() the \r ...
2
votes
1answer
83 views
how to communicate to a program with another external program
I'm trying to write to stdin and read from stdout ( and stderr ) from an external program, without changing the code.
I've tried using named pipes, but stdout doesn't show until the program is ...
0
votes
3answers
131 views
s(n)printf prints more characters than format specifier specifies
I am encountering a curious issue with sprintf on an embedded system (Libelium Waspmote, similar to Arduino) where sprintf is outputting more characters than given by the format specifier. In this ...
1
vote
2answers
81 views
Program is reading far too many decimal cases
I'm trying to read 3 floats. I tried to do this with floats and doubles, but I get the same behavior with both.
Input example:
3 1 2
32.0 54.7 -2
3 integers on first line, 3 floats on second line:
...
0
votes
3answers
163 views
Automatically include header files when I open a .c file [closed]
I want to know if this is possible...
Whenever we want to compile a C program or C++ etc, we need some to include header files like #include in .c file....
Is there any way so that, any file which ...
0
votes
2answers
178 views
Redirecting stdout to socket
I am trying to redirect stdout to a socket. I do something like this:
dup2(new_fd, STDOUT_FILENO);
After doing so all stdio functions writing to the stdout fail. I have tried to reopen stdout this ...
0
votes
1answer
63 views
Glob in C++ and print the results
I'm just trying to glob everything in a directory and print the list of results, but I get an empty printf:
#include <glob.h>
#include <stdio.h>
int main()
{
int result;
glob_t ...
1
vote
2answers
61 views
How can I capture STDOUT of a code , in code itself?
puts "hi"
puts "bye"
I want to store the STDOUT of the code so far (in this case hi \nbye into a variable say 'result' and print it )
puts result
The reason I am doing this is I have integrate an ...
1
vote
1answer
67 views
C freopen descriptor - close manually/leave opened
I've been using freopen (from stdio.h) function before without asking myself this question. But now I'm unsure.
E.g. I've reopened stdout:
#define OUTPUT_FILE "out.txt"
if ( ...
0
votes
0answers
58 views
fcgi_stdio.h and behaviour change from stdio.h
While discussing OpenCOBOL being utilized for FastCGI, I posted that replacing
#include <stdio.h>
with
#include <fcgi_stdio.h>
should exhibit no behaviour change for the vast ...
0
votes
0answers
182 views
When creating a new VC++ console app error: cannot find source file stdio.h, tchar.h
I have just begun teaching myself VC++ using Ivor Horton's Beginning Visual C++ 2010 and Visual Studio Professional 2010 . However, when I create a new VC++ console application through File -> New ...
0
votes
1answer
82 views
A detailed reference for the stdio.h header
I have been learning c++ (not from school, I do everything at home, this is my third high level OOP language) for a while now and the tutorials (cplusplus.com) I have seen only show the use of the ...
3
votes
2answers
130 views
What is the reason C++ std IO doesn't output NULL gracefully? [duplicate]
Possible Duplicate:
Why does std::cout output disappear completely after NULL is sent to it
It seems if you try:
std::cout << NULL << endl;
std::cout << "hell" << ...
3
votes
1answer
71 views
What are the origins of the name “scanf” and the specifier “%g”?
What does the "f" in 'scanf' mean?
Also, why are double values signified by "%g" - what does the g mean?
2
votes
1answer
77 views
Aligning Output Values in C
So I'm working on a program which needs to format output. The output is supposed to be aligned, and it does do so with small numbers:
But then when I give big numbers, it no longer works:
My ...
0
votes
1answer
74 views
C++ (VS2012) stdio: Can't read one-byte file if that byte is 09h
The code is very simple.
unsigned char a_byte;
ifstream a_file("C:/file.bin", ios_base::binary);
if (a_file.is_open() && a_file.good())
{
a_file.seekg(0);
a_file >> a_byte;
...
0
votes
1answer
53 views
Storing separated strings
So I'm trying to write this program that takes a string, seperates the strings into words and puts the seperated words into a format like "word1+word2+word3..."
I've written a C program that gets a ...
6
votes
2answers
187 views
Buffering of standard I/O library
In the book Advanced Programming in the UNIX Environments (2nd edition), the author wrote in Section 5.5 (stream operations of the standard I/O library) that:
When a file is opened for reading and ...
1
vote
2answers
116 views
where can i find information about the different cin functions?
I'm looking here.. but i cannot seem to find what i need..
I mainly want to find documentation to know the inner workings of cin.ignore() and to find out about other cin functions.
Sorry if it's a ...
0
votes
1answer
155 views
Compiling codes with *_s in Visual C++ 6.0
I'm trying to compile some old codes in Visual C++ 6.0. The DSW file was missing, so I'm adding all the codes into a new workspace.
I have a.cpp as follows
#include "vld.h"
#include "afx.h"
#include ...
0
votes
2answers
613 views
Arduino: printf/fprintf prints question mark instead of float
I have the following code for an Arduino sketch:
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
static FILE lcdout = {0} ;
static int lcd_putchar(char ch, FILE* stream)
{
...
1
vote
4answers
228 views
C++ standard replacement for (s)printf
I'm doing a server application in C++, and it provides an HTML page as response to HTTP requests.
The problem is that, currently, my webpage is written as a constant string in my code, and I insert ...
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 ...
1
vote
1answer
71 views
How to force fseek() to move the cursor
I have a program which creates multiple threads and each one of them tries to write 100 bytes in a file at a different location(offset).
The first thread writes 100 bytes starting from 0, the second ...
3
votes
1answer
262 views
fputc vs putc in C Implementation
I was reading the C programming book by Kernighan and and came across this thing. The difference between the two or their respective usage criteria. I found some posts on StackOverflow which dealt ...
-2
votes
6answers
73 views
A simple “for” command doesnt work using only the stdio library
Using the same machine and IDE as reffered in my other question (third paragraph at Problems in code or my IDE/comp is bugged?)
I try to run this code:
#include <stdio.h>
#define n 3
int ...
15
votes
4answers
230 views
Massive fprintf speed difference without “-std=c99”
I had been struggling for weeks with a poor-performing translator I had written.
On the following simple bechmark
#include<stdio.h>
int main()
{
int x;
char buf[2048];
FILE *test = ...
1
vote
1answer
185 views
linux stdin, stdout, stderr [duplicate]
Possible Duplicate:
Writing to stdin and reading from stdout (UNIX/LINUX/C Programming)
I have a simple question regarding stdio of linux system.
what happens if a program writes to stdin?
...
0
votes
2answers
131 views
Reading keyboard input using cstdio
What's wrong with the following C code? (updated)
int nfds = 0;
char c[2] = " ";
char ans[2] = " ";
printf("Test p or s [p,s]: p? ");
ans[0] = (char)getchar();
if (ans[0] != '\n')
{
ans[1] = ...
0
votes
3answers
68 views
Is it possible to write a constant value to a binary file directly?
I know that
fwrite(&variable,sizeof(datatype),<count>,<filepointer>);
writes data onto a
binary file. But what if I want to write the character 'c' directly into the binary file ...
-1
votes
2answers
87 views
Over-riding Standard Input and Output in C
I wrote this code for overriding the cat command in Ubuntu. The following three formats for cat instruction are working properly but rest are not working.
Working ones:
./catf > File.txt
./catf ...
-2
votes
2answers
64 views
How to prevent Lua using stdio or redirect stdio in a rtos
I am trying to port Lua to ucos on a arm9 cpu. lua source code has usd stdio lib at many place. Yet, no uart is left for stdin/sdout ect in my hardware. More worse, the compile of ADS use the ...
0
votes
1answer
313 views
Where can I find the implementation of stdio.h in Visual Studio?
I could find stdio.h header file easily through search in Windows Explorer but couldn't find its implementation file like stdio.lib(?). Where can I find it?
Additionally, I can't find Windows.h ...
4
votes
1answer
201 views
Why is System.err slower than System.out in Eclipse? [duplicate]
Possible Duplicate:
Java: System.out.println and System.err.println out of order
Why this code
System.err.println("err");
System.out.println("out");
prints
out
err
on Eclipse ...






