0
votes
0answers
58 views

File Input failure C++

I've been trying to grasp how reading and writing with the fstream class works, and I've become stuck. The program reads the magic number of the file correctly, and then suddenly fails to read an ...
5
votes
3answers
246 views

Low level disk operations in Linux for C++

What kind of methods exists in linux for low level disk operations in C++? I am attempting to write my own manager of data on a disk. For example, I would like to create a C++ program in the Linux ...
1
vote
2answers
278 views

How to input a file into C++ and comparing console input

Im working on my homework assignment and I stuck because in the assignment we have to ask the user to enter a file name but also to type in either wc cc or lc (word count, character count, and line ...
1
vote
2answers
665 views

C++ Fstream to replace specific line?

okay i'm stumped on how to do this. I managed to get to the line I want to replace but i don't know how to replace it. say a file called file.txt containts this: 1 2 3 4 5 and I want to replace ...
-2
votes
1answer
368 views

Converting an input file of words to a vector - C++

I am creating a program that reads an input file of text only and creates a vector of the words in that input file. The program I have now only prompts the user for the input file name and then stops ...
0
votes
1answer
119 views

If a line contains certain Word save it

#include <iostream> #include <fstream> using namespace std; int main() { ifstream stream1("source.txt"); string line ; ofstream stream2("target.txt"); while( ...
-1
votes
2answers
103 views

File Input Not Returning Good

Apologies to ask such a basic question but I really cant see why In3 is not good. I suppose there is something fundamental here which I dont know Thanks in advance the contents of the file ...
0
votes
2answers
619 views

Char pointers and strings through ifstream

So I have this recursive descent parser that works fine recognizing and using values through command line arguments but I am not sure how to port this to reading from a .dat file, using the proper ...
1
vote
2answers
7k views

Reading input from text file to array in c++

Alright, be gentle, since I'm very much a novice to programming. So far I've only studied C++ and I'm running Visual Studio 2010 as my compiler. For this program, I'm trying to read from a text input ...
0
votes
3answers
648 views

Where to place file in order to read?

Hey, where do I place a text file that I'm trying to read using fstream? In this tutorial, http://www.gamedev.net/reference/articles/article1127.asp, they say ifstream fin("input.txt"); where would ...
0
votes
1answer
206 views

Incorrect data input with fstream

I tried to read in data from a text file using fstream but got wrong data. ifstream fin ("C:\\Users\\rEgonicS\\Documents\\test.in"); int number; fin >> number; cout << number; test.in ...