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
~676 People Reached
Favorite Forums
Favorite Tags
c++ x 7
c x 3
Member Avatar for every1play

Hi guys, I am creating a 2D casual game and i encounter a problem. The problem is that I have a highscore features that saves to a text file by storing the name and score Now i wanted it to sort using bubblesort and structures. How can i achieve that? …

Member Avatar for rubberman
0
212
Member Avatar for every1play

any idea on how to change strcpy in c++ int main() { //all the winning combination strcpy(winKey[1].key, "123"); strcpy(winKey[2].key, "456"); strcpy(winKey[3].key, "789"); strcpy(winKey[4].key, "147"); strcpy(winKey[5].key, "258"); strcpy(winKey[6].key, "369"); strcpy(winKey[7].key, "159"); strcpy(winKey[8].key, "357"); }

Member Avatar for deceptikon
0
244
Member Avatar for every1play

Recently i saw this code on the net and i have some questions taht i dun understand. Hope some1 can help to ans. #include <iostream> #include <stdlib.h> #include <time.h> #include <string.h> using namespace std; struct combos { char key[3]; char holder[3]; }; void displayBoard(); //display board void computerMove(); //AI;s Move …

Member Avatar for nishavas01
0
209