-1
votes
0answers
5 views

Using concept of Stack and Read data from file find a highest CGPA in c++? [closed]

//Variable string Person[150]; string CGPA[150]; void loadeddata(); main { loadeddata(); system("pause"); return 0; } void loadeddata() { stack obj; stack obj1; try{ ifstream ...
-1
votes
2answers
36 views

How can I parse data from a string with this format: 1 Gt 500.85? [closed]

I have about 100 lines of text. Each line has the following format: 1 Gt 1.003 The Gt will change and will be from 1 to 3 characters long. How can I parse this line and store the Gt as a string, the ...
1
vote
2answers
61 views

dereferencing string array element c

I have an array of strings and inside a loop, I want to do something like this: fstream in(fileNames[i], ios::in); but that doesn't work. Although, when I try: fstream in("some string",ios::in); ...
-4
votes
4answers
100 views

Find the most used words in both text files

I have two txt files both using the same words multiple times. I have managed to pull them both into arrays and formatted one of the non-formated txt files via a insertion sort. Now I need to compare ...
1
vote
3answers
86 views

Creating a big size array of type char and copying file characters

I have to copy characters of a file in a big size array, so I created this code: std::vector<std::vector<char> > strings; strings.resize(rows); for (int i = 0; i < rows; i++) { ...
1
vote
1answer
133 views

ifstream::open() function using a string as the parameter

I'm trying to make a program that asks for the file that they user would like to read from, and when I try to myfile.open(fileName) I get the error: "no matching function for call to ...
1
vote
3answers
72 views

compare string to const char* always false

I'm trying to compare a string with a const char*. std::string line; std::fstream tmpl; I fill the string variable with some input from an fstream file using getline: getline(tmpl, line); and ...
4
votes
2answers
133 views

How to read a json file into a C++ string

My code like this: std::istringstream file("res/date.json"); std::ostringstream tmp; tmp<<file.rdbuf(); std::string s = tmp.str(); std::cout<<s<<std::endl; The output is ...
2
votes
2answers
96 views

is it possible to read from a specific character in a line from a file in c++?

Hey all so I have to get values from a text file, but the values don't stand alone they are all written as this: Population size: 30 Is there any way in c++ that I can read from after the ':'? I've ...
1
vote
3answers
170 views

using string to pass filename to fstream

I am using the following method to read a txt file modelStream.open("file.txt", ios::in); if (modelStream.fail()) exit(1); model = new Model(modelStream); but i want to know how i can pass in a ...
2
votes
3answers
318 views

Reading a string from a file in C++

I'm trying to store strings directly into a file to be read later in C++ (basically for the full scope I'm trying to store an object array with string variables in a file, and those string variables ...
0
votes
1answer
145 views

Using c++, why am I getting the error message “string subscript out of range” when I know it is not? Or at least it seems that way

EDIT - there are no blank lines. EDIT 2 - my bad, it seems I was wrong all along. There is a blank line somewhere, although the csv file indicates otherwise. It's working now. Okay so here is the ...
0
votes
2answers
287 views

ifstream in C++ not accepting a variable

I have tried to use the following snippet of code: int main() { string location_file ("test.txt"); string data; ifstream file (location_file); getline (file, data); file.close(); cout << ...
0
votes
3answers
81 views

FStream class and using strings as parameters

Deneme::Deneme(string FileName){ fstream textfile; textfile.open(FileName); } This gives me an error, but when I type textfile.open("randomname"); instead of textfile.open(FileName); there ...
-2
votes
1answer
378 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
437 views

C++ ifstream string

In a file I have pair of names on each line. Like this: John Dave Antoine Gerda Sara Math and so on... What I want to do is to output that pair into one string. Like this: string pairs[100]; ...
1
vote
4answers
547 views

C++ fstream: how to know size of string when reading?

...as someone may remember, I'm still stuck on C++ strings. Ok, I can write a string to a file using a fstream as follows outStream.write((char *) s.c_str(), s.size()); When I want to read that ...
2
votes
4answers
843 views

How do i read an entire .txt file of varying length into an array using c++?

I'm making a shift cipher that reads in text from a file and decodes it. The decryption works fine howver i can't figure out how to find the length of the file without hardcoding it into the size of ...
0
votes
2answers
393 views

Memory exception in program - file handling and strings

I'm getting the following error: Unhandled exception at 0x7580b9bc in _ObjDraw.exe: Microsoft C++ exception: std::invalid_argument at memory location 0x0024f718.. When I run: ifstream ...
1
vote
3answers
352 views

std::getline for an ifstream but using a char* instead of a string [closed]

I want to use the getline function with a char*. I don't want to use std::string because I have a function that takes char* as parameters and writes to them and I don't want to write a whole new one ...
0
votes
2answers
1k views

Anagram generator for C++ (not using STL)

I am trying to create an anagram solver just using a very basic, procedural approach. I am finding out that I probably should have done this using classes, but now it is too late and my assignment is ...
1
vote
2answers
895 views

Storing NUL characters (ASCII 0)

I've created a program in C++ that prompts the user for a filename and for the requested filesize. The program checks if the requested filesize is bigger than the actual filesize and then adds null ...
3
votes
3answers
1k views

how can I read exactly 128 bytes from an fstream into a string object?

How do I read exactly 128 bytes from an fstream into a string object? I wrote some code to read the first 128 bytes of a file and print it and then the last 128 bytes of the file and print that. The ...
1
vote
1answer
361 views

C++ stringstream reads all zero's

I have a file which contains three integers per line. When I read the line I use a stringstream to separate the values, but it only reads the first value as it is. The other two are read as zero's. ...