Tagged Questions
0
votes
1answer
37 views
Undoing the effects of ungetc() : “How” do fseek(),rewind() and fsetpos() do it?Is buffer refilled each time?
Huh!!How shall I put the whole thing in a clear question!!Let me try:
I know that the files opened using fopen() are buffered into memory.We use a buffer for efficiency and ease.During a read from ...
0
votes
3answers
42 views
Catch errors on stdin, stdout, stderr
I was writing a bit C99 code reading from stdin:
// [...]
fgets(buf, sizeof(buf), stdin);
// [...]
But I am wondering if I should catch errors in this case, since the shell could redirect stdin to ...
0
votes
1answer
29 views
What's the better way: 1 pipe and 1 socket, or 1 socket?
I have a server-program which processes audio-data and passes it thru to the audio-drivers.
The server-program copies the audio-data and puts the copy in a named FIFO in a seconds thread.
If there ...
0
votes
1answer
100 views
C - Transcoding to UDP using FFmpeg?
I'm trying to use the FFmpeg libraries to take an existing video file and stream it over a UDP connection. Specifically, I've been looking at the muxing.c and demuxing.c example files in the source ...
0
votes
0answers
43 views
C - Stream live camera capture on an HTTP server
How might I go about writing a c program that would take live webcam capture and stream it via an server (likely HTTP)? I'm not looking for the exact code, just some pointers on where to get started ...
0
votes
3answers
100 views
reading 7 variables (1 line per variable) from a file and assigning to struct variables
I'm making a simple enrollment system that maintains a database of a collection of computer science students. Each student record contains
#include <stdio.h>
#include <stdlib.h>
#include ...
0
votes
3answers
73 views
How create a FILE* from char * without create a temporary file
I'm creating a program using lex and yacc to parse text, but i need create a parser of various content. I don't wish use the stdin, if i using FILE *yyin to specify the input, i can change the ...
0
votes
2answers
75 views
Equivalent function of fgets for open
With fopen() I read the file line by line with fgets().
Are there a function like fgets() inorder to read stream opened by open() ?
6
votes
5answers
239 views
Reading a text file backwards in C
What's the best way to read a file backwards in C? I know at first you may be thinking that this is no use whatsoever, but most logs etc. append the most recent data at the end of the file. I want to ...
0
votes
1answer
59 views
Low speed on converting float stream with pipe, scanf, write
I'm trying to save a continuing data stream (very large) to a binary file.
The data stream is generate with
find . -name "(pattern)" | xargs -L1 awk '{(smth)}' | ./translater
The "translater" is a ...
1
vote
2answers
82 views
Best approach to continuously scan for a string in a streaming buffer
I have this situation where my function continuously receive data of various length. The data can be anything. I want to find the best way I to hunt for particular string in this data. The solution ...
2
votes
2answers
62 views
How to check if next input is empty?
I'm trying to redirect a file as stdin input (one of the requirements). I can't figure out how to check if the next input is empty or if it's done.
something like this
./a.out program < file.txt
...
0
votes
1answer
156 views
Portable way to read data from stdin without blocking
Is there a portable way to read data from stdin without blocking, or to check if data is available to be read without blocking? Keep in mind stdin could be piped from another process, not just be ...
-1
votes
1answer
108 views
Stream I/O in Java versus C and compatibility over JNI [closed]
Are there any fundamental differences in the way output streams are created and handled in C vs Java (in the context of Linux).
Is it possible to open read from an input stream created by a C ...
-2
votes
1answer
81 views
How to decompress .zip file(standard zip format) stream into memory also as stream With C? [closed]
First,I'm a ios developer,I have to use C or objective-c,as title, I tried to implement that function in many ways,zlib can't support handle .zip format file、 minizip only support decompress file from ...
0
votes
1answer
106 views
Why is zlib deflate() hanging?
My issue is that my program hangs on use of zlib's deflate() function.
I first initialize my z_stream, as follows:
int setupGzipOutputStream(z_stream zStream) {
int zError;
zStream.zalloc = ...
4
votes
1answer
131 views
C DLL working on FILE * called from C# - passing a stream in and out
I have an issue with calling a C DLL function from my C# code. The C DLL has a function accepting a file name (const char *), then opens the file, performs some work on the content (reads through the ...
0
votes
1answer
108 views
Prevent bash from forwarding stdin to stderr
I'm trying to implement a simple terminal GUI using bash's interactive mode. I successfully invoked bash, get its stdout and print everything to a text view. I forward the user input from the text ...
1
vote
1answer
83 views
Trying to accept a socket connection, retrieve and process a message, and then write this message to the terminal
I need to write a program to retrieve and process a message through a socket. I have no trouble and understand the process of creating the socket, binding the socket, listening for the incoming ...
2
votes
4answers
699 views
Convert a uint16_t to char[2] to be sent over socket (unix)
I know that there are things out there roughly on this.. But my brains hurting and I can't find anything to make this work...
I am trying to send an 16 bit unsigned integer over a unix socket.. To do ...
0
votes
1answer
215 views
3
votes
3answers
73 views
Transparently treat multiple streams as one (stream sizes known)
The problem I'm trying to solve is optimising the input of some 3rd party code, which has commandline "program input_file output_file". The 3rd party code handles the input_file with standard fopen, ...
1
vote
0answers
27 views
Pass readableStream to C binding
Is it possible to pass a readableStream into a Node.js C binding library in some way without having to buffer it first? I'm aware of using child_process.spawn with stdin and stdout and shell commands ...
0
votes
2answers
2k views
Fastest way to check if a file exist using standard C++/C++11/C?
I would like to find the fastest way to check if a file exist in standard c++11(or)c++(or)c (I have thousands of files and before doing something on it I need to check if all of them exist). What to ...
3
votes
2answers
275 views
How to read from keyboard when stdin is set to a file in C
I think this is simple, but not for me obviously!
I have a console-application. I need to read input from the keyboard, but stdin has been redirected to a file. So how do I create a FILE-Handle that ...
0
votes
1answer
142 views
How do I flush the i/o stream? I'm using scanf(), fflush(stdin) doesnt work
How can I flush the input buffer without putting a newline character in scanf()? Because my proffessor doesn't like it. I tried fflush(); but it didn't work.
#include <stdio.h>
#include ...
0
votes
4answers
390 views
How do I count words and lines in an input stream?
I am new to C programming and I am currently trying to teach myself how to create a C program that can count words and lines in the input stream and print the two totals to the standard output.
What ...
0
votes
1answer
101 views
Split a stereo stream into two mono streams
I've been using Fmod (c/c++) for a few days and I was wondering if there was a way to split a single stereo stream (left/right) into two mono streams and thus have them in two channels instead of one ...
0
votes
2answers
745 views
reading USB port in Linux
I am writing a program to read data from a Bluetooth USB dongle. I am using Linux, so I suspect there may be a POSIX library to read from it, or perhaps there is a predefined file descriptor for each ...
0
votes
5answers
89 views
fscanf() error on this text file?
test.txt:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb
ccccccccccccccccccccccccccccccccccc
The color of the car is blue
code:
FILE *fp;
char var[30];
int result
if( ...
0
votes
4answers
365 views
Socket Read/Write error
would install valgrind to tell me what the problem is, but unfortunately can't any new programs on this computer... Could anyone tell me if there's an obvious problem with this "echo" program? Doing ...
2
votes
1answer
234 views
C++ fstream always fails on .txt file
my .exe and addrr.txt files are located on D:\ drive
when im trying to ready .txt file ifstream does nothing
this is my code:
ifstream file;
file.open("addrr.txt", fstream::in | ...
-1
votes
2answers
331 views
Portable char newline in C++ \0
Is there a way to write a cross-platform parser that reads chars until a newline character is found? I'm using '\0' in Linux, but I'm not sure that this can be done on Windows too.
std::string line;
...
2
votes
2answers
127 views
How can I associate a stream (FILE *) with stdout?
Right now each module is writing to stderr, thus I cannot turnoff output of an individual one. Does anyone know how I can associate a stream with stdout thus each module will write to independent ...
0
votes
1answer
81 views
C char* with contents of URL
I am working on some homework here, but I have completely run out of ideas. I need to make a simple web browser in C, which must include simple HTML reading. This would be easy normally, but the ...
1
vote
1answer
266 views
Writing stdin to a file
I'm trying to write stdin to a file, but for some reason, I keed reading zero bytes.
Here's my source:
#include <stdio.h>
#include <stdlib.h>
#define BUF_SIZE 1024
int main(int argc, ...
1
vote
3answers
136 views
Simulating streaming data
I'm trying to write a program that will read from a flat file of data and simulate streaming it so I can test a program that reads streaming data without having to connect and start up the streaming ...
4
votes
1answer
71 views
Freeing the buffer of a blocked stream in C
In a multithreaded application I need to cancel threads. Some of them use the flockfile
mechanism which apparently is not a valid cancellation point for pthread_cancel. I managed to kill the threads ...
1
vote
3answers
461 views
Can I replace a call to open_memstream with a malloc and an implicit cast?
All,
I have a program that prints to a stream. I need to buffer this stream in memory, and then print each line as necessary to an actual file later.
Since the fprintf() function calls must have a ...
3
votes
3answers
264 views
Printing while reading characters in C
I'm trying to write a simple little snippet of code to respond to an arrow key press.
I know that up is represented by ^[[A, and I have the following code that checks for that sequence:
while( ...
0
votes
1answer
335 views
Identifying Frame boundaries in RTP stream
I have few doubts regarding frame boundaries in RTP packets.
First, If the marker bit is set, does it say that a new frame has begun(this is what I understand from RFC 3551)?
Second, According to ...
0
votes
1answer
138 views
Using streams to pipe input/output between *nix processes
I'm working on a fairly simple application in C. The end goal is to pipe the output from one process to in input of another in a *nix environment (yes, I am aware of the pipe() command and dup/dup2 ...
0
votes
1answer
74 views
What are the possible error conditions on a stream that will cause ferror() to be set?
Some operations to read and write from streams may set the error flag in a stream, which can be tested using ferror(stream), while I'm quite sure this must be a frequently asked question, I wasn't ...
1
vote
3answers
2k views
Arduino can't read Serial properly
Alright, I've googled getting a string from Serial with Arduino and I've had no luck even copy and pasting examples.
I'm trying to get a string from the Serial. Here's my code:
void setup() {
...
16
votes
5answers
2k views
cstdio streams vs iostream streams?
I just learned of the existence of the ios_base::sync_with_stdio function, which basically allows you to turn off (or on if you already turned it off) the synchronization between iostream streams that ...
4
votes
1answer
229 views
Unit testing a binary format reader in C
I am writing a C library that reads a binary file format. I don't control the binary format; it's produced by a proprietary data acquisition program and is relatively complicated. As it is one of my ...
-1
votes
2answers
115 views
reading from a text file: strange “\x01\0\0\0” sequences
I have been struggling with this issue for one week, and still far away from the solution.
I am reading a plain text from a file by strings. It reads everything successfully until a character with a ...
0
votes
1answer
318 views
Piping to gnuplot, doesn't accept multiple commands
I have the following code:
fprintf(temp->_fstream, "plot '-' using 1:2 title 'tittle1'\n");
_fstream is a gnuplot pipe, using the '-' enables to write the data to gnuplot directly instead of ...
5
votes
1answer
2k views
Passing data array to gnuplot via a pipe in c rather than a file
Right now I am passing a file to gnuplot via a a pipe in c, something like this:
fprintf(gnuplotPipe, "plot \"data-file.dat\" using 1:2\n");
Is there any way that I don't have to write the data ...
1
vote
1answer
187 views
Reading from a text file error: strange '\x01' '\0' '\0' '0' sequences
I am reading a plain text from a file - by lines, with a following function:
int readline(FILE *in, char * buf) {
char c;
buf[0]='\0';
for (int i=0; i<BUFSIZ-1; i++) {
fread(&c,1,1,in);
...



