Thanks for the tips, the solution was to indeed double-check the include files and make sure they were in a logical order. I know that sounds simplistic, but sometimes you can only spot these...
I'm a moderate-level C++ programmer who is a little rusty at the moment. I've got an object question which is driving me nuts. I'm sure this is a C++ 101 level question, but for...
I'm a moderately experienced C++ programmer who's trying to do a little socket work. Don't ask why, but I'm to write a program which, when activated, sends an HTTP POST request to...
I have a "This should be simple!" kind of problem. I need to do a little socket programming on a SunOS machine
. I went back to an old school assignment I did years ago,...
General question here... I'm writing a program which reads a ton of source data, crunches the numbers, and outputs a few nice summary reports. The source data is a lot of individual...
Hi everyone, thanks for your advice. At this point, I suspect I am running up against a memory constraint of some kind. I'll retool the code to make sure I'm not littering the stack, hopefully that...
I'm a moderately experienced C++ programmer working on code which must do the following:
(a) Import data from a lot of little files
(b) Load that data into various...
Thanks for taking a look at this - I got a private reply explaining an efficient solution. (going to do the array as a global variable instead of an object) Thanks for your help!...
Hi, thanks for replying! ValRow contains all the values within one line (or "row") of the file. Essentially, I am reading one line of the file, loading it into ValRow, and then tokenizing the...
I'm a moderately experienced C++ programmer and a network engineer. I’m having a weird problem with using an array of vector<char *>, which I’ve never tried to work with before. ...
I’m an intermediate-level C++ programmer grappling with a fairly rudimentary problem. I’m creating a C++ object called FruitCart; FruitCart contains a number of integers...
I'm a little new to C++, so I hope I'm posing a relatively simplier problem here... Essentially, I am writing a program which will input a CSV file with multiple lines of data, 30...