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
~338 People Reached
Favorite Forums
Favorite Tags
Member Avatar for josh327

Hey guys, I'm trying to make an elevator simulator. It shouldn't be anything complex; just a basic 4 story building. Also, the highest level of coding used should just be structures and pointers. I need help as to where I should start.

Member Avatar for Narue
0
91
Member Avatar for josh327

Hey guys I'm trying to create a tic-tac-toe program in c++. This is what I have so far. But it just produces garbage. [CODE]#include<iostream> #include<cstdlib> #include<ctime> #define frz system("PAUSE") using namespace std; //Global Variables const int length = 3; const int width = 3; //Function Prototypes void initializeboard(char [length][width], int); …

Member Avatar for VernonDozier
0
247