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
Ranked #107.55K
~126 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for tlly

[code=c] int validate (char *check[], int AMMOUNTINARRAY) { int through = 0; bool error = false; do { if(!*check[through]=={'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0'}) error = true; through++; } while(through<=AMMOUNTINARRAY); } [/code] I know its just shorthand but the theory is the same

Member Avatar for Salem
0
126

The End.