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
~1K People Reached
Favorite Forums
Member Avatar for termin8tor

Hello all! I am working on a regular expression to be used in descrambling words in my scrabble solver. What I am attempting to do is write a regular expression that can be used to find all characters within a scrambled word, irrespective of order and match them to a …

0
91
Member Avatar for synaps
Member Avatar for cherrymae.calma
0
200
Member Avatar for matanking

hi im trying to make a "settings" that they are on c++ and saving on text documents here is the code [CODE]#include <iostream> #include <fstream> #include <string> #include <sstream> using namespace std; int main(){ fstream first("firstt.txt");; fstream File("file.txt"); string firsttime; string blah1 = "enable"; string blah2 = "disable"; getline(first, firsttime); …

Member Avatar for matanking
0
94
Member Avatar for termin8tor

Hey all, I've been programming an ISBN system of sorts and I'm a little stuck (again). I want to output my linked list to a text file, so I setup the code like this: [code] void saveList(char fileName[40]) { for ( list< Publication* >::iterator it = pubList.begin(); it != pubList.end(); …

Member Avatar for termin8tor
0
262
Member Avatar for termin8tor

Hey all, I'm attempting to use an STL List to store a list of objects. Now I realise it's quite trivial to store a list of objects of my own definition. My real question is, how do I fill the list with objects that inherit from a base class. E.g. …

Member Avatar for termin8tor
0
267
Member Avatar for termin8tor

Hey all! I'm new to the forum and a little wet around the programming ears so to speak. Anyway I have a question regarding Linked Lists. I know that typically a linked list looks like this: [CODE] struct Node { dataType varName; //data type and variable name Node *next; //points …

Member Avatar for jinhao
0
162
Member Avatar for PratikM

Hey guys, I got the icon thing to work(it was pretty easy actually, you just have to download [URL="http://icofx.ro/"]icofx[/URL] and the [URL="http://www.softpedia.com/progDownload/Resource-Hacker-Download-1520.html"]resource editor[/URL] then load icofx, go to tools, resource editor, click on folder icon, open your .exe file in the Dubug part of your folder, and then click on …

Member Avatar for termin8tor
0
223