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
~473 People Reached
Favorite Forums
Favorite Tags
c x 3
c++ x 1

2 Posted Topics

Member Avatar for austinslik

for (i = 0; i < 10; i++){ cout<<unsort[i]<<" "; } for (j = 0; j < unsort[10-i-1]; j++){ if (unsort[j] > unsort[j+1]){ x = unsort[j]; unsort[j] = unsort[j+1]; unsort[j+1] = x; } } In your second for loop, when you use i, isn't that already supposed to be 10 …

Member Avatar for austinslik
0
141
Member Avatar for tractionmate

Hi guys, i was wondering if any one has any material on fixed point implementation? Thanks

Member Avatar for Salem
0
332

The End.