0
votes
2answers
31 views

How to read and store 2 float values seperated by a comma from a file into two arrays where each float is stored in one array

my text file format is this: 3.2 , 5.6 444.2 , 555 112.34 , 32.3 i want to read the above information present within file name file.txt and store it in two arrays a,b where a will have the float ...
0
votes
2answers
69 views

I'm having trouble with the syntax for reading the file, help please?

I have to write a program that opens the file and reads each line until EOF is reached. Each line in the file has two double values representing a point in two-dimensional space. And for each of these ...
-1
votes
3answers
45 views

If I had a text file of values, how would I read that file?

I have to write a program that takes a single command-line argument. The argument should be the name of a file to open for reading (And if the argument is not provided or the file cannot be opened, ...
-1
votes
1answer
54 views

Linked list to a file [duplicate]

I have a single linked list as follows. /*nodeType definitions*/ #define INT 1 #define FLOAT 2 #define DOUBLE 3 typedef struct { int nodeType; void* node_data;//this field is also ...
-5
votes
1answer
44 views

C: Reading strings from binary file

I have a home assignment which says that I have to store information about a mansion in a binary file. On the first line of that file I have to keep information about how many floors there are in the ...
0
votes
0answers
40 views

Executing a.out on Android

I compiled, assembled and linked a File on Android (ARM) and want to execute it on Android (ARM). I have got a a.out file in my /data/data/Package.AppName/files folder. The file exists and if I try to ...
-1
votes
1answer
39 views

How can I use fread() to load the contents of a file into the second element of an array of strings in C?

I am having some trouble understanding how pointers work in a particular situation. The details of my confusion are outlined below. I have created a character array of 8-byte strings named buffer and ...
-2
votes
2answers
55 views

_findfirst failure with .. path

Why _findfirst returns -1 with ..\*.txt search pattern struct _finddata_t c_file; hFile = _findfirst("..\\*.txt", &c_file); But processes ..\* correctly?
3
votes
3answers
73 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
1answer
37 views

Parse data from buffer of a bin file c

I have a bin file wich contais some data, i am suposed to read that data and store it in variables. The problem is i dont know how to parse the data from the buffer. FILE *file; char *buffer; //Abre ...
2
votes
2answers
74 views

How are char ** objects saved?

Today, I asked me, how char ** objects are saved in memory or in binary files. I tested that with the following code snippet: char **array = (char *)malloc(3 * sizeof(char *)); array[0] = "Foo"; ...
0
votes
2answers
79 views

How to skip data when working with files C language

I have an issue with as assignment regarding files. Here is the assignment: I am asked to write a code for a program that adds to each line in a text file, the number of that line. for example if ...
0
votes
3answers
74 views

C - segmentation fault using struct member values

I'm running head-long into a segmentation fault that I'm not sure of the reason behind. Short story... I store file names into members of a struct, then use those members to open files to load ...
1
vote
4answers
67 views

How to count the number of words from a text file in C [duplicate]

This is what I have come up with so far. #include<stdio.h> main() { int w=0, v=0, c=0, cnt=0; char inp[21]="abcd aeiou hi there", ch; FILE *read, *write; write = ...
-1
votes
3answers
75 views

how to specify the position in txt file to delete record in C programming

void deleteRecord() { FILE *fp, *fdel; struct person obj; char number[20]; printf("\n============================"); printf("\n DELETE"); printf("\n============================\n\n"); ...
0
votes
0answers
40 views

C open a text file passing path

I'v tried to use this code to open a txt file in my program, but nothing is happening. ShellExecute(NULL, "open", filename, NULL, NULL, SW_SHOW); I would appreciate any help, since system.start() ...
0
votes
3answers
94 views

Read from a file (.txt) and save into a char* C

I have a file.txt that it contais, for example, "This is a txt file" (this content can be variable) and I need a function that reads file.txt and save its content into a char*. file.txt contains -> ...
1
vote
1answer
33 views

dup return value is always zero

I would to know why does dup always return zeroes in the following code (in which a file is opened, than 10 dup are done successively) : #include <stdio.h> #include <stdlib.h> #include ...
0
votes
3answers
82 views

Trying not to overwrite a file in C?

Hi I'm trying not to overwrite a file in C using fopen(file, "w"); My question is the file already exists as a 10 MB file but when I used the fopen the file ends up becoming 1KB. I want to write ...
0
votes
2answers
116 views

Reading from a file word by word [closed]

I have a custom archive structured as follows: %list% name1 name2 name3 %list% %dirs% archive directories %dirs% %content% name1 path1 content of file1 %content% %content% name2 path2 content of ...
-1
votes
2answers
42 views

Why using fread() the 2-nd time it reads a file not from beginning but from the end of reading by the 1-st fread()?

I'm want to fill hdr (struct) variable with data from in.wav file and I want to copy the first 64 bytes of in.wav file to another file (out.wav). But! When using fread() the second time it starst to ...
1
vote
1answer
48 views

How to access sub-chunks's data of .wav file?

How to access sub-chunks's data of .wav file? I've been trying to copy binary data (first 44 bytes) to a struct variable (size of 44 bytes). But there is a problem: I'm convinced that I'd copied ...
0
votes
3answers
49 views

Can't copy the beginning (first 64 bytes) of one .wav to an empty one

I have to copy first 64 bytes from input file in.wav into output file out.wav. (I've downloaded a program which shows .wav file's header (chunks): first 44 bytes and first 20 bytes of data_subchunk) ...
0
votes
0answers
41 views

my program won't open the contents of a file [closed]

Why won't my program continue after I ask for the text file? Once I run the program, for some reason I doesn't seem as if it looks for the file, nor does it output the contents of the file. what can ...
0
votes
1answer
69 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
2answers
32 views

error deleting entries in binary files

system("cls"); another = 'y'; while(another == 'y') { printf("\nEnter name of employee to delete "); scanf("%s",empname); ...
1
vote
2answers
38 views

error in my search linked list implementation

My program doesn't seem to be opening the text files properly. I have a path.txt which is a string representation of all the paths of folders and text files which I have created. When running the ...
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 ...
0
votes
1answer
97 views

Reading unicode file in c

I just want to read read unicode text file in normal c. Following code is not working for same, #include<stdio.h> int main() { FILE *ptr_file; char buf[1000]; ptr_file ...
-3
votes
3answers
65 views

Reading text files into an array in C

Just got a question regards, when you read lines of text from a text file how would you separate the words and store them into an array. For example if I have two lines of text in my text file that ...
0
votes
1answer
41 views

C: How to read a jpg from a file and save it?

I am having some trouble reading a jpg file and saving it. I want to implement a file sharing system between a client and server and I am unable to even read a jpg and save it on the same process. ...
0
votes
3answers
73 views

C: Sending and Receiving a file over a socket

I am trying to implement a distributed p2p file sharing system where a peer can both send and download files from other peers. But, I am having some trouble downloading and saving the file to a ...
0
votes
2answers
75 views

read data from txt file to linked list

the code is for creating a shop purchase, stock maintainence system i have a problem in entering data from txt file to linked list with fscanf(fp,............) function; the code below has the ...
-1
votes
0answers
49 views

data should be deleted in file as i read

I'm working on files in C.. i want to read the data from file into string. I'm doing this with fread. I'm fixing the size of string to limited size. Now i want to read the data from file in chunks ...
2
votes
1answer
76 views

C read multiply data types from file

I need to read from a text file and store its points in a int array. That part I've sucessfully done with FILE* fp = fopen( filename, "r" ). Using fscanf (fp, "%f", &n); to read from the file. My ...
-1
votes
1answer
25 views

read data from file if it has spaces

For example data is like this in my file now i want to scan this data and put it into a linked list then how shiuld i do? Because using fscanf will not solve the issue as i have (M tech) as a entry ...
-1
votes
1answer
96 views

Read file .txt to array and split

i'm here to ask for some help. I want to read a .txt with this format: 20 20 1 2 1 2 3 4 2 2 5 4 1 1 1 1 4 2 1 3 1 3 2 1 7 4 1 3 3 2 2 10 1 5 8 2 1 1 1 3 8 1 1 4 9 1 1 1 4 3 8 1 1 2 2 12 4 3 2 4 3 ...
0
votes
2answers
84 views

How to determine Unix text files in C?

I am writing a C program that looks at all files in the current directory using DIR, opendir(), and readdir(), then assigning them to a dirent struct as below. int main(int argc, char *argv[]) { ...
1
vote
3answers
96 views

Is it possible to traverse a file from bottom up? [C]

How can I traverse a file line by line going from the bottom up? For example, here is my code for traversing it from top to bottom: void *readFileTB(char *str1) { int size = 1024; char ...
0
votes
2answers
74 views

How do I return a specific line from a file if it partially matches a string parameter? [C]

I am new to C but I am trying to write a function that returns a line from a file depending on the parameter used. It will return the last line that contains that parameter. I think it's better ...
1
vote
1answer
33 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 ...
0
votes
1answer
49 views

C getopenfilename getFileName

I have the following code which the problem is, when i'm printing the full path name of the file, i get double spaces between each character in the array. // initialization outside any class in .c ...
-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 ...
1
vote
1answer
84 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 ...
1
vote
3answers
91 views

Using the return value of “scanf()” to check for end of file

I was searching the net on how to use return value of scanf to check the end of file! I found the following code.But i am having difficulty in understanding? How is this method working? What does ...
1
vote
2answers
35 views

reassign a file pointer in loop

I need to reassign a single file pointer to multiple files sequentially. I have the file paths correctly in a string path. when i pass the path and the file pointer to a function to reassign, I get ...
0
votes
2answers
60 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 ...
0
votes
1answer
52 views

fseek and fread on a file containing a list of parts

I have a file containing a list of parts and part numbers. What I need to do is display the name of the part at a location given by a file pointer and an integer. Something like sizeof(part) * n and ...
0
votes
3answers
84 views

Find string in text file in C

I'm trying to search a text file using C for a string of characters that will always be in a specific place. Specifically I'm looking for three sequential dashes. When it finds the three dashes it ...
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 2 3 4 5 27