Tagged Questions
1
vote
3answers
66 views
C++ Segmentation fault when working with <vector> and <fstream>
I was working with 3D vectors and everything worked perfectly. When I added and worked with ofstream files Segmentation Fault appeared.
I don't understand the problem at all.
The following code ...
0
votes
2answers
62 views
Reading int from .txt , save it to vector and then save to output file
I've written a mysterious program that it suppose to open and read this .txt
`> krol.txt
3 7
3 13
2 4
3 1
and then save it to vector, do some crazy operation with some algorithms, save it to ...
2
votes
1answer
125 views
Why can't I use a fstream vector?
When I try to use a vector <fstream>, it outputs a compile error. Why does C++ forbid a vector of fstream?
2
votes
2answers
97 views
I need help understanding how to sort a set or vector with multiple strings with spaces in C++
I am attempting to take in a text file with "stock market tickers" taken from multiple points in the day.
I.E.
Ticker Price
HPQ 121
MSFT 76
X 133
EBAY 92
XOM 64
AAPL 141
DJIA 128
AAPL 130
ABC 139
...
2
votes
3answers
750 views
Reading Text File of Floats into a 2D Vector in C++
I have a data file comprised of thousands of float values and I want to read them into a 2D vector array and pass that vector to another routine once it's stored the floats from the file. When I run ...
2
votes
1answer
251 views
c++ vector push back error [closed]
Im getting an error every time I try to debug this with Visual C++ 2008
#include <iostream>
#include <vector>
#include <string>
#include <fstream>
using namespace std;
void ...
0
votes
3answers
121 views
Write to a Vector of Type Class from a File
Saving the vector to a file works fine. But I'm looking for a simple way to load the saved data back into the vector.
This is a follow up question to two I asked previously.
1) C++ Trouble ...
0
votes
1answer
338 views
Segfault 11 in code using vectors and fstream? C++
Im trying to write a program that takes a txt file as input, and uses ques from the words in the text file to generate a .h file (and later hopefully) a .cpp file. This code compiles fine, its just ...
1
vote
1answer
45 views
Getting Run-Time error when trying to Load a file : Vector subscript out of range?
Im making a program for class that manages a Hotel. I have a function that saves all the current information in the program. But When I try to load back that information, the program crashes and ...
3
votes
4answers
683 views
loading fstreams into a std::vector in c++
This is a simple and complex question at the same time.
This compiles:
int Test;
vector<int> TEST;
TEST.push_back(Test);
cout << TEST.size();
This does not compile:
fstream Test;
...
-2
votes
1answer
365 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 ...
1
vote
4answers
146 views
Why does this Stream of data end at byte 26?
I'm still working on that bitmap I/O problem from a week ago. I got stuck again, so I decided to start with a type of I/O I was familiar with, and make it more like what I needed steadily (which is ...
1
vote
2answers
1k views
reading and writing a vector of structs to file
I've read a few posts on Stack Overflow and a number of other site about writing vectors to files. I've implemented what I feel is working, but I'm having some troubles. One of the data members in ...
1
vote
4answers
1k views
What am I doing wrong with my serializing a vector with structs in it to a .dat file?
If I type in
Description: Apple
Quantity: 10
Wholesale Cost: 30
Retail Cost: 20
Date Added: December
These are the contents in my .dat file:
1Apple103020December
But when I load my program, ...
