0
votes
1answer
24 views

fgetc omit characters and then assign integer

I've a file data.dat HI5 LO2 from which I want to read 5 and 2, and store them as uint16s. I've written #include <stdio.h> int main() { unsigned short int high; FILE *pFile; ...
1
vote
3answers
80 views

Read from a file that is continuously being updated

I am writing some C code to process some data in a file, but I just learned that the file is going to be constantly added to (about 1 time/second, maybe faster). So I'm wondering how do I keep ...
0
votes
1answer
56 views

Reading wrong input from file

I am trying to write a program which should read a line and store its contents in an array, so it needs to read line by line and also read different characters in a line. For example my input is 4 6 ...
2
votes
3answers
60 views

ftell at a position past 2GB

On a 32-bit system, what does ftell return if the current position indicator of a file opened in binary mode is past the 2GB point? In the C99 standard, is this undefined behavior since ftell must ...
0
votes
4answers
103 views

C Programming File I/O

I'm trying to read from a text file and write to one, but every time I execute my code, nothing happens with the text files. By "nothing happens", I mean that the program won't read my input file and ...
1
vote
1answer
58 views

Why does a call to fread set my file pointer to null?

I have a file pointer which is valid before calling fread, and NULL after, and I'd really like to know why. Here is the relevant code: 244 // open the file for reading 245 clo->heap_file = ...
1
vote
1answer
30 views

WinAPI using SetfilePointer to test EOF

Hi guys If I want to test EOF using SetFilePointer(fi1, 0, NULL, FILE_CURRENT) != INVALID_SET_FILE_POINTER or ? SetFilePointer(fi1, 1, NULL, FILE_CURRENT) != INVALID_SET_FILE_POINTER MSDN ...
1
vote
3answers
129 views

How can a C program determine and print the location of its own executable?

I want to write a a C program that prints its location. For example if i put the program exe file to D:\myfolder\myc_prog, it should print the same location D:\myfolder\myc_prog and if I put that exe ...
3
votes
2answers
59 views

Handling C Read Only File Close Errors

I'm doing some basic file reading using open, read, and close (Files are opened with access mode O_RDONLY). When it comes time to close the file, I can't think of a good way to handle a possible ...
3
votes
3answers
74 views

Python version of freopen()

Is there anything in python that can replicate the functionality of freopen() in C or C++? To be precise, I want to replicate the functionality of: freopen("input.txt","r",stdin); and ...
0
votes
4answers
73 views

Memory and file pointers

I'm confused about how the OS actually "opens" a file in C when you do an fopen in the code. To elaborate, suppose I had a 100 binary files (say of size 1 MB) which I open in C FILE **fptr; fptr = ...
10
votes
3answers
138 views

fwrite() alternative for large files on 32-bit system

I'm trying to generate large files (4-8 GB) with C code. Now I use fopen() with 'wb' parameters to open file binary and fwrite() function in for loop to write bytes to file. I'm writing one byte in ...
0
votes
1answer
66 views

How to use select to read from stdin?

I try to read from stdin using select, after that I'll send it through a socket to a server. but This snippet doesn't read anything from stdin, and prints Enter command: after the first time I input a ...
0
votes
1answer
51 views

how to buffer and delay printf() output?

I wrote a C program and in the program there are many printf() which output log information to stdout. Now I want to use multiple processes to run the program simultaneously with different arguments. ...
0
votes
2answers
57 views

To copy files in binary mode,why it doesn't work when we read to and write from a character variable? [duplicate]

The following program is intended to make a copy of one .exe application file.But just one little thing determines whether it indeed gives me a proper copy of the intended file RealPlayer.exe or gives ...
0
votes
2answers
50 views

using fwrite and double pointer to output 2D array to file

I've dynamically allocated a 2D array, accessed w/ a double pointer, like so: float **heat; heat = (float **)malloc(sizeof(float *)*tI); // tI == 50 int n; for(n = 0; n < tI; n++){ // tI ...
0
votes
7answers
68 views

C fopen call with variable name?

Is there ever a circumstance where the following would work? (I'm trying to pull the value of a variable and create a file based off the text stored in the array.) #include <stdio.h> int ...
0
votes
2answers
69 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 ...
2
votes
2answers
63 views

reading from file and pass to a two dimensional array in C

I want to read a text file and put it's data into a 2 dimensional array. This code works for a small text file like 0 1 1 1 0 1 1 0 1 1 1 1 but gives segmentation fault for a big text file and 648x512 ...
0
votes
1answer
70 views

Skipping line from .TXT file [duplicate]

Hello i have a little problem with my project. I want to scan the text from .TXT file into my struct except from the 1st line in my text file. I tried to do this with fgets() function but it only ...
2
votes
3answers
102 views

Proper, efficient file reading

I'd like to read and process (e.g. print) entries from the first row of a CSV file one at a time. I assume Unix-style \n newlines, that no entry is longer than 255 chars and (for now) that there's a ...
0
votes
2answers
77 views

How to add multiple lines in text file

I am trying to write a program which can display the contents of the file then append the content dynamically by user to a text file in C. Below is the code, but somehow it is working for single line ...
2
votes
1answer
50 views

How to use fscanf to read a line to parse into variables?

I'm trying to read a text file built with the following format in every line, for example: a/a1.txt a/b/b1.txt a/b/c/d/f/d1.txt Using fscanf to read a line from file, how can you automatically ...
1
vote
2answers
54 views

Can we pass a path string with white-spaces in it as argument to fopen()?

I'm using fopen() and I need to open a file where I pass a path with white-space in it as argument. Here is my code: FILE * pFile; pFile = fopen ("\this folder\myfile.txt","w"); Will that work as ...
0
votes
1answer
55 views

Loading in numbers from a file containing whitespace to a 2d integer array [closed]

I have a file of numbers, laid out in a 20x20 grid (there exists a line break every line). I'm trying to figure out how I could load this into a 2d array of ints in plain C? Here's the grid ...
-1
votes
1answer
40 views

creating a struct for file/directory tree [closed]

how would one go about creating a struct for a file/directory tree. The c program gets a txt file input with shell scripts of the paths of each txt file. for example a\a1.txt a\m\m1.txt how would ...
0
votes
1answer
75 views

Displaying information from an external file in C

How do I read in an external file and then either print the whole text or selected lines? FILE *fp; fp=fopen("c:\\students.txt", "r"); I understand that reads the file but after that I am lost. ...
0
votes
2answers
63 views

Why is the fgets function deprecated?

From The GNU C Programming Tutorial: The fgets ("file get string") function is similar to the gets function. This function is deprecated -- that means it is obsolete and it is strongly ...
-1
votes
2answers
30 views

Confusion about different file modes

If I open a (say) binary file, and I want to append the end of it both of the following ways seem to work for me fileVar = fopen("FileName", "w+b"); and fileVar = fopen("FileName", "r+b"); I ...
0
votes
2answers
45 views

Trouble with dynamic input program in C

I am having debugging my program and I cannot seem to find any answers. My program takes in a file, copies the words to a dynamic array and keeps a word count for multiples. Problem 1) For what I ...
-2
votes
2answers
54 views

Infinite for loop with 2d array [closed]

I'm having a problem fixing this infinite loop. I've done some tests so I'm pretty sure the loop isn't when reading the file. Right after "printReportHeading();" is a for loop. I am pretty sure that ...
-4
votes
1answer
57 views

Write works but Read fails- C [closed]

I have the following code that gets the filepath from another module, opens the file and reads the content. The file is opening , but read fails with error: Bad file number. I then inserted a write ...
1
vote
1answer
59 views

Add chars to existing array of chars/ char pointers?

Currently I am reading in a line of strings and parsing it. I'm using the following variables to do so: char **parsed and char *parsed_arguments[64]. Here is the code I use to parse it: char ...
1
vote
1answer
34 views

What happens with seek pointer?

I'm currently programming my own implementation of fseek function and I want to ask on what happens in several causes. Here they are: If seek origin is set to SEEK_SET or SEEK_CUR and result of next ...
1
vote
2answers
53 views

Passing an input file to an output file in C?

Currently I am able (I think) to open a file using fopen. For testing purposes I want to be able to pass the file's contents to an output file, but I'm not getting the desired results. Here is some ...
0
votes
2answers
63 views

Repeatedly fread() 16 bits from binary file

I'm reading a binary file. The first 16 bits represent an array index, the next 16 represent the number of 16-bit items about to be listed, and then the remaining multiples of 16 represent all those ...
1
vote
2answers
83 views

Text to binary database

I need help turning a text file into a binary file for C. I can't proceed with my program even though I've written half of it because I don't know if any values are being printed. The conversion ...
0
votes
0answers
52 views

Write data to file via serial cable [closed]

I have a serial communication between my uC board and PC, where I am using Hyper Terminal to sent and receive commands. Periodically the uC send some status which I plan to save them in a file, in ...
-1
votes
2answers
45 views

Files in C, how to do input

This is my output function void output(int n){ FILE *fp; fp = fopen("sqrt.txt", "w"); for(int i = 1; i < n; ++i){ fprintf(fp, "%.2f\n", sqrt(i)); } fclose(fp); } I'm ...
1
vote
4answers
71 views

Preserving file pointer between function calls

I have a code where I'm accessing a binary file several times. Each time I call the function, it opens the file for reading and it reads out only the required number of bytes (say n bytes each time). ...
-1
votes
2answers
26 views

File write unexpected output

I have made this program which copies the text from a file to another file. The result was, original file contents "This is a test" new file contents "This is a test" Which worked, I ...
1
vote
3answers
80 views

Possible alternatives to speed up reads from a text file in c?

I am working on a machine learning application where my features are stored in huge text files. Currently the way I have implemented the data input reads, it is way to slow to be practical. Basically ...
0
votes
3answers
106 views

converting a string to double using atof in c

I am trying to read from a file and store it in a matrix using c. The code I have is ReadSparseInput (int nvtxs,int nsize, double vector[], int rowptr[] ,int colind [] , double values[]) { int ...
1
vote
2answers
119 views

Reading integers with fread in ANSI C

I am writing a program in C, and I am reading a text file using fread and I cannot read correctly integers. The value of a in the text file is 16, the output I get is: a= 538976288 I have used ...
-3
votes
1answer
31 views

Wrong values when reading a file in C [closed]

I'm having a problem with the program below. The program reads a file and returns how many lines, characters, sentences, and words are in the file. Whenever I run the program, it gives me numbers in ...
1
vote
1answer
43 views

Formatted output - same data to multiple text file in C

The program I am working generates data which I output to text files using fprintf_s() function. For a certain reasons I need to print the "same" data to different text files (with different names), ...
0
votes
1answer
34 views

Weird thing in file-descrpiter I/O for gpio port

I'm coding in Linux to control the gpio port on my board, using the following codes. However,the result from read() is always a 0x10, which is a hex for LF line feed. Voltage is an enum variable ...
1
vote
5answers
67 views

copying contents of a text file in c

I want to read a text file and transfer it's contents to another text file in c, Here is my code: char buffer[100]; FILE* rfile=fopen ("myfile.txt","r+"); ...
1
vote
3answers
208 views

Read .txt files from C++ program in Xcode

I have been struggling on getting my C++ program to read my .txt file from Xcode. I even tried putting the .txt file in the same directory of my Xcode C++ program but it won't read from it ...
0
votes
2answers
82 views

Why am I unable to create this file?

Here is my code example: int main(int argc, char* argv[]) { char* fileName = "%appdata%\\log.log"; FILE *file; file = fopen(fileName, "a+"); time_t startTime = time(0); ...

1 2 3 4 5 17