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.2K
2 Posted Topics
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 …
Hi guys, i was wondering if any one has any material on fixed point implementation? Thanks
The End.
tractionmate