No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Umm you haven't called them in main? Or was there more to this?
Name: Andre Oboler Nickname: - Height: Umm... I really should find out! Weight: Need to lose a bit :/ Doc suggested cutting down on the Pizza in take - ah well, we'll see if that works. Hair: Brown Eyes: Brown Location: Melbourne, Australia / Lancaster, UK Age: 25 next month …
You basically want a print struct function? (That works for any struct) Sounds like you don't want a struct at all but rather a class. Or rather a set of classes that all inherit from a base class that has a virtual print() function. Then all the child classes would …
[QUOTE=somer2412]I know this is very simple but I cannot remember how to underline a string in C++. Can someone please help.[/QUOTE] Underline a string? You mean in Visual C++, C++.net, GTK or something surely? C++ itself doesn't do underline... it's just ascii based.
You may need to include the line: using namespace std; In the .h file after the includes statements. Can't remember the reason for it other than a change to the language a few years back. At any rate you have a scope problem and that might just fix it. - …
[QUOTE=winbatch]You defined Input and Serial as char *. You need to you strcmp to compare.[/QUOTE] Don't ignore this advice. The sytax bugs are easy to fix as they usually stop it compiling. The Symantic bugs like this (you are comparing if two memory addresses are equal rather than if the …
Yip. That last post was right. At the very top of your file add: void checkConflicts(char *startGrid[]); And magic should happen and everything works.
The End.
oboler