Tagged Questions
1
vote
3answers
112 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
55 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
66 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
66 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
129 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
63 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
50 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
54 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
44 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
65 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
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 ...
2
votes
2answers
59 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
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
3answers
100 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
73 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
48 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
51 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
53 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
38 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
73 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
58 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
28 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
50 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
54 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
32 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
51 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
56 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
80 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
48 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
44 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
65 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
23 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
78 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
101 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
101 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
30 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
41 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
65 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
189 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);
...
0
votes
3answers
59 views
file output has two newline characters instead of one
This is my code:
#include<stdio.h>
#include<conio.h>
#include<string.h>
int main()
{
FILE *p;char c[79];
clrscr();
p = fopen("file1.dat","w");
printf("\nenter lines ...
0
votes
1answer
72 views
Special Characters Are Read Wrong - File I/0
This code reads a file byte per byte in order to duplicate it:
fplain = fopen("plaintext", "rb");
fcypher = fopen("cyphertext", "wb");
for(j = 0; j < Nb; j++){
for(i = 0; i < 4; i++){
...
1
vote
1answer
48 views
C Survey Program [closed]
Hi I am fairly new to C and I am trying to make a survey program in C that allows the user to make a choice between different type of questions and stores the survey in a file. My code does not enter ...
0
votes
2answers
97 views
Counting number of lines in CSV file without loading into memory
I have a CSV file that is extremely large, roughly 50k+ lines. I use CHCSVParser to parse it all line by line which works fine.
I would like to display some type of progress to the user as the data ...
-2
votes
4answers
175 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 ...
0
votes
1answer
70 views
Reading a .txt file into a 2-d array
I have a text file as follows:
1 2 3 4 5
6 7 8 9 10
11 12 13 14 15
16 17 18 19 20
I want to read into a 2-d array of integers. The problem is the file provides no information about the dimensions ...
0
votes
3answers
75 views
c program How to create multiple a text file in strcat
How to create multiple a text file in strcat
In my case, for example i input three name
./test paul tony john , so i use strcat to add ".dat"
but i cannot set three name is paul.dat tony.dat ...



