Tagged Questions
-1
votes
1answer
83 views
C++, How to open a file without having to type the whole file path
I have a simple question!
I am opening a file that is located in a simple folder in my VS12 project.
In order to open the file, you have to type in the whole file path so for example you would have ...
1
vote
3answers
66 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 ...
0
votes
2answers
68 views
input text from a file to a char variable
I have a variable
ifstream inFile("stuff.txt");
in the stuff.txt file there's a full sentance:
The quick brown fox jumps over the lazy dog
How do I put it into a char array with all the spaces?
...
-1
votes
2answers
422 views
Reading binary file with fstream
I am reading a binary file with fstream and storing the information in an array of characters:
int dataLength = 32;
int counter = 0;
char data[dataLength];
char PMTone[dataLength/4];
std::fstream *fs ...
1
vote
2answers
82 views
C++: Does the Null get stored when storing a char array in a textfile?
Have a look at this code
ofstream obj("output.txt");
obj<<"Hello World";
Here i send to the text file "output.txt" The char array "Hello World"
Now char arrays are have a terminating null at ...
1
vote
5answers
877 views
Reading a 2D char array from file in C++
First off my knowledge of c++ is very limited this is my first class so this may look dumb but bear with me, i would ask that you please keep it somewhat simple or explain very well thanks in advance.
...
0
votes
1answer
139 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 ...
1
vote
2answers
860 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 ...