C/C++ function that outputs to a named stream.
0
votes
1answer
28 views
Neat arrangement for fprintf
The following is my Matlab coding
fprintf(1, 'Object # \tArea \tPerimeter \tCentroid\n');
for i=1:num
a(i)=s(i).Area;
b(i)=s(i).Perimeter;
c(i)=s(i).Centroid;
end
fprintf(1, '#%3d %15u %15u %15u ...
0
votes
1answer
45 views
C language: write to file without buffering [duplicate]
I have opened a file for writing some data to a file, but it keeps buffering and won't write anything to the file until the program ends. How can I skip the buffering process and write directly to the ...
0
votes
3answers
33 views
Unhandled Exception, writing information to a file C language
this is what i'm trying to do,
I have a file with information in it. I'm trying to rewrite it so before every line, the number of the line will appear.
The basic idea i have in mind works like this:
...
1
vote
2answers
35 views
Using fprintf to print on several lines in Matlab
Question:
Write a procedure called Print7 to print all integer numbers within the range 0:100 that are divisible by 7. Ten numbers are to be printed on one output line. Hence write a program that ...
-1
votes
1answer
55 views
Why is fprintf()/fscanf()/printf() showing wrong output in my Dec-to-Binary program,while printf() & sscanf() work fine?
I initially wrote this program to simply display the binary-form of a decimal integer,but I found it crude since it simply used prinf() to print the bits side by side.So I used sprintf() to write it ...
0
votes
2answers
36 views
write data into the text output file
I have input.dat like that:
1 1 1 2 3 10 17 16 15 8 9
2 1 3 4 5 12 19 18 17 10 11
3 1 5 6 7 4 21 20 19 12 13
4 1 15 16 17 24 31 30 29 22 23
1st column : numel
2nd column ...
-1
votes
1answer
57 views
fprintf output is returning unpredictable results
My fprintf() is returning unpredictable results. I think it is returning the memory address number instead of the data inside the memory address. Can someone have a look at my code and check it out? ...
2
votes
1answer
111 views
C - reading a file and appending data to another
I am trying to open a file (that wants to be a small archive) and I want to copy another file content in it. The code is the following:
FILE * arch;
FILE * par;
void read_words (FILE *f)
{
char ...
0
votes
1answer
40 views
FprintF from linklist to file
I have added the Fprintf into the SavePacket function but it doesn't recognise pos->destination like it does withing the outpackets function, How do i addapt the code so it takes the data saved in my ...
-1
votes
2answers
34 views
Create a new file from another file in C
I have a file with this format:
0.4
0.3
0.2
0.4
I need to create a new file with this format:
1 2
0.4 1 0
0.5 1 0
0.3 0 1
...
I wrote this function
void adapta_fichero_serie(char ...
0
votes
1answer
26 views
How to get fprintf to display higher precision?
I am trying to use the following fprintf code
n
m
fprintf('The minimum value of the modulus of the image of C_r is %d \n\nThe correspoding point is at %d \n\n',m,n)
and I get the ...
1
vote
1answer
87 views
fputs vs. fprintf and double
I need to put out a double value into an file.
So for all my other string i have to put out i use fputs because i think and timed it that fputs is faster then fprintf.
But if i want to put out the ...
-5
votes
0answers
27 views
File recording on With ะก++ results of request to postgresql database [closed]
Reading from a database of words and names of files (which these words contain) and record them in the text file in the following format is made: the file consists of 2 columns separated by a gap, the ...
0
votes
1answer
25 views
Make fprintf to write to std::stringstream
Function fprintf writes to FILE*. I have a debugPrint function which writes to stringstream. I don't want to change my function for it is used at many places and it would break the code.
How can I ...
1
vote
2answers
21 views
Appending a string on different lines of a file?
I am learning C and I had a question. I am trying to append a string into a file. However, every time a string is appended it has to be on the next line (Sort of like println instead of print).
I ...
0
votes
2answers
66 views
Create a simple table in Matlab
I've been fighting with fprintf for an hour now, should be easy but it's not apparently.
Have a vector with descriptive statistics called datasave, contains 9 numbers like average, standard dev, ...
0
votes
1answer
26 views
Library can only be accessed using SUDO - libfprint permissions
I have downloaded and installed the libfprint fingerprint API. Everything works ok but there is one snag, it will only detect my fingerprint scanner when I run applications using sudo.
This is ...
-2
votes
1answer
61 views
Use of fprintf and fwrite [closed]
We can't use fprintf if we are going to write the structure to the disk right ????
for text file we can use fwrite or fprintf either but.. for .. binary file we ought to use fwrite.
correct me if i am ...
3
votes
1answer
163 views
C fprintf/fscanf optimising speed for big files
I merge two big(near 8 GB every) files into one. I try to optimise it as good as it's only possible.
void merge() {
char *array[17]= {"q.out","b.out"}; // names of input files
FILE *finpt1 ...
0
votes
1answer
33 views
how to output a character to a file multiple times in matlab using fprintf
Greets all
I'm trying to output a character (a parenthesis) ')' to a file multiple times based on the length of a for loop.
Example:
num1=23;
for i=1 length(array)
...
-2
votes
4answers
191 views
How to write int to file using write system call and read them exactly as written?
How can I write int, float or other types to a file using the write system call of UNIX?
I want to do so without using any lib function like fprintf or fwrite.
I want to use file descriptor and not ...
-1
votes
3answers
59 views
In C, how do I append to a file line but not the end of the file? [duplicate]
I have usernames and tweets stored in a file the following format:
username1:message1:message2:...:messageN
username2:message1:message2:...:messageN
...
usernameN:message1:message2:...:messageN
...
1
vote
1answer
28 views
awk issue with printing the result
Well the problem I am facing is very elementary. I have written the following code to divide a line into 10 parts and find the coordinates of each part. The program runs fine but the output text file ...
0
votes
2answers
67 views
C reading past newline
When I type, for example, test \n test and try to use this code to write it
FILE *f = fopen(file, "w+");
fflush(f);
if (f==NULL) {
//perror(f);
return 0;
}
else{
int i = fprintf(f, "%s", ...
0
votes
1answer
76 views
having issues with fprintf C in XCode [closed]
I am attempting to output with fprintf within C++ in Xcode on Mac for the purposes of Physics project. Previously I have used Turbo C++ on a PC and had no issues with similar outputs as as I wrote up ...
-4
votes
2answers
49 views
Print using %d…%d 64 times [closed]
I am trying to print 64 integers on a line...same way for the next 20000 lines. But typing 64 '%d's in my fprintf is not possible. Is there anyway to do it except using 'for' loop?
Thanks!
2
votes
3answers
65 views
Spacing of fprintf in C
This is the part of code I'm working on:
void update_log(char *name, pthread_t ID, char *status, char *update)
{
time(&rawtime);
time_str = asctime(localtime(&rawtime));
...
1
vote
1answer
53 views
C char not saving to file until after app close
I'm making a c function and using it with a mac app for testing and learning purposes. When I try to print text to a file using this:
FILE *f = fopen("text.txt", "w+");
fflush(f);
if (f==NULL) {
...
0
votes
0answers
54 views
Reading from .txt file and store it back into array
I have a contact.txt file that I created from here.
FILE *cf;
cf = fopen("contact.txt","w+");
for(x=0;x<10;x++)
{
fprintf(cf,"%d. Name: %s \n",x+1,name[x]);
fprintf(cf," Home Number: %s ...
0
votes
1answer
23 views
How to print unkown number of outcomes?
first time posting and also a beginner of C. My problem is how do I print an unkown number of results? Take this code for example:
#include <stdio.h>
int main(void)
{
int a,b,c;
b=0;
...
1
vote
3answers
123 views
C - How to fdopen as open with the same mode and flags?
I would like to have a FILE* type to use fprintf.
I need to use fdopen to get a FILE* instead of open that returns an int.
But can we do the same with fdopen and open? (I never used fdopen)
I would ...
3
votes
2answers
170 views
write vs fprintf - why different and which is better?
I have recently started learning the wonders of pthreads according to POSIX 1003.1c.
PThreads may seem complex, but they are basically simple threads that we use in the class to create parallel ...
1
vote
1answer
72 views
Printing Vectors Whose Length Is Not Known A-Priori :: MATLAB
I have 3 vectors of variable lengths but bounded between 1 and 5 (both inclusive). I need to print them out (in a "nice" way) while the code runs.
Nice := I want to let all the vectors be printed in ...
0
votes
2answers
43 views
Spacing in my Output slightly off in C
700 = 17 + 683
702 = 11 + 691
704 = 3 + 701
706 = 5 + 701
As you can see...the 3 and 5 is in the wrong place it should be:
700 = 17 + 683
702 = 11 + 691
704 = 3 + 701
...
2
votes
1answer
109 views
fprintf segfault error despite strings printing independently
I am getting a strange segfault on the last case. Valgring states illegal memory access
fprintf(stderr, "Print %s \n", primary_key->name);
fprintf(stderr, "Print %s \n", ...
1
vote
1answer
90 views
fprintf not working in C program compiled using Make
I have two files with identical C code. I'm compiling one using Make and one using GCC directly (gcc NAME.c -o NAME).
In the GCC-compiled program, all fprintf statements work fine. In the ...
0
votes
2answers
188 views
Not printing Inode File name or header information in C
Running the following lines of code and running into issues that I am not sure about. The main idea is for a user to enter in an inode to be searched. Once found, the file name associated with that ...
-1
votes
1answer
189 views
C's printf and fprintf(stdout,) are not printing
This is a bit of an odd one. My code wasn't outputting what I thought it should. I added some print statements at various stages to see where it was going wrong. Still nothing.
So I added a printf ...
1
vote
3answers
110 views
Partial line from cpp file ending up in output file - haunted code?
I'm sorry, it would be extremely difficult to make a fully reproducible version of the error --- so please bare with my schematic code.
This program retrieves information from a web page, processes ...
2
votes
1answer
161 views
Suppress Escape Characters in Matlab
I am writing a module in Matlab to enter the configuration parameters of my experiment to a file 'parameters.txt'.
Here is the module which does that :
for i=1:size(ParamSheetText,1)
...
1
vote
2answers
169 views
C formatted string - How to add leading zeros to float and int values? [duplicate]
Possible Duplicate:
Extra leading zeros when printing float using printf?
I'm trying to get the output of this C program to have placeholder zeros, as the output of this program will be ...
0
votes
1answer
88 views
Changing the default output file handler in Matlab
I think it would be useful, at least I find so, and I searched for but did not find anythign appropriate.
Supposing you have a set of lines that use stdout, or these lines are included in a function. ...
0
votes
4answers
230 views
What is the difference between fprintf and vfprintf in C++? [closed]
I haven't been able to find an answer to the following question, and I am having some issues related to the functions.
My main programming is done in C#, and never really learned C++ while studying, ...
-1
votes
1answer
76 views
Using Matlabs fprintf command
I am compiling a function within matlab that will tell me
The third side of the triangle
The perimeter length of the triangle
The area of the triangle
I have come up with this so far
function ...
2
votes
1answer
287 views
write cell array of combined string and numerical input into text file
Consider the following:
DateTime = {'2007-01-01 00:00';'2007-02-01 00:00';'2007-03-01 00:00'};
Headers = {'Datetime','Data'};
Dat = [100,200,300];
Data = [DateTime,num2cell(Dat')];
Final = ...
3
votes
2answers
88 views
Efficient data interchange format using only C-style fprintf() statements?
I need to transfer the very large dataset (between 1-10 mil records, possibly much more) from a domain-specific language (whose sole output mechanism is a C-style fprintf statement) to Python.
...
0
votes
2answers
623 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)
{
...
4
votes
4answers
461 views
Clearest way to read and print .txt file lines in C
There are a bunch of ways describing how to use various methods to print out lines of a text file on this site:
Posix-style,
reading IP addresses,
Fixed line length.
They all seem to be tailored ...
4
votes
1answer
61 views
Scanf is requesting two strings at once
In this segment of code the scanf is requesting twice and I am not sure what could be causing it to do so.
int t;
for(t = 0;t<5;t++)
{
//scanf requests twice for some reason
scanf("%s ...
0
votes
2answers
23 views
Is it possible to print on a file the output of a function?
I'm writing a tool which uses various void functions to analyze some elements that the program receive in input, and print in the stdout (using printf()) the results of the analysis. Obviously that ...






