Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~539 People Reached
Favorite Tags
Member Avatar for hbweb500

I'd like to create a matrix class using the vector library. I have seen many examples of creating a matrix class using standard C arrays, and in each of these, arrays are declared in the private section of the class declaration, and initialized in the constructor function, as such: [code=c++] …

Member Avatar for mrnutty
0
207
Member Avatar for hbweb500

So Im trying to write some code that takes a chunk of text, splits it up into words, then puts these words into an array. What I have is: [code] string buf; stringstream ss(database); // database is my chunk of text while (ss >> buf) // Tokenize when whitespace met …

Member Avatar for hbweb500
0
213
Member Avatar for hbweb500

I have an 80gb hard drive which I wish to partition. On one partition I would like to install Windows 98, mostly in order to play older games. One the larger partition, I would like to install XP, for anything else I need to do. I understand that Windows 98 …

Member Avatar for Catweazle
0
119