there is a mistake in this program. in this part of code:
// 1 pass of the bubble sort
swapped = false;
for(int i=0; i<4; i++)
{
if(R[i] > R[i+1])
{
int temp = R[i];
R[i] = R[i+1];
R[i+1] = temp...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.