Tagged Questions

1
vote
4answers
1k views

C file pointer read write issues

I was trying to make a simple bubblesort program. Read in numbers from a text file and compare them with the next line, sort in ascending order. Now, I've found my program is able to read from the ...
0
votes
2answers
79 views

How to load 2D array from a text(csv) file into Octave?

Consider the following text(csv) file: 1, Some text 2, More text 3, Text with comma, more text How to load the data into a 2D array in Octave? The number can go into the first column, and all text ...
0
votes
2answers
72 views

Writing to the middle of a text file in Java

What's the best way to write to the middle of a text file in Java? I know that there's no getting around reading the entire file to memory and then writing it back. But parsing is really one of my ...