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 #44.3K
~2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for s1994
Member Avatar for evantage

not sure about this myself but maybe this will help, http://wiki.allegro.cc/index.php?title=Windows,_Visual_Studio_2010_and_Allegro_5

Member Avatar for markaburlingame
0
178
Member Avatar for bdl365

for starts have you seeded rand(); I include time and use the very second in time the seed is set as the seed. This will let the rand() statment seem more random. without seeding it you will get the same numbers every time the program is ran.

Member Avatar for markaburlingame
0
96
Member Avatar for mtm6042

this will reorganize your array into smallest to largest. now just out put 0-9 or 9-0 depending on function a or b for(i=0;i<size;i++) { for(j=0;j<size-1;j++) { if(array[j]>array[j+1]) { sort=array[j]; array[j]=array[j+1]; array[j+1]=sort; } } }

Member Avatar for markaburlingame
0
170

The End.