Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add c program to sort integers #109 #113

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

archu5
Copy link

@archu5 archu5 commented Oct 25, 2018

resolve #109

temp = arr[j];
arr[j] = arr[k];
arr[k] = temp;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please correct the indentation, Match Opening braces with the closing braces.

arr[k] = temp;

}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same error

@archu5
Copy link
Author

archu5 commented Oct 27, 2018

updated my code #109

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add a program to sort an integer array in C
2 participants