fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char str[100];
  5. int n,m, temp;
  6. printf("String Size: ");
  7. scanf("%d", &n);
  8. printf("Enter String : ");
  9. for(int i=0; i<n; i++){
  10. scanf(" %c", &str[i]);
  11. }
  12.  
  13.  
  14. for (int i = 0; i < n - 1; i++) {
  15. for (int j = 0; j < n - i - 1; j++) {
  16. if (str[j] > str[j + 1]) {
  17. // Swap the characters
  18. temp = str[j];
  19. str[j] = str[j + 1];
  20. str[j + 1] = temp;
  21. }
  22. }
  23. }
  24. for(int i=0; i<n; i++){
  25. printf("%c ", str[i]);
  26. }
  27. }
Success #stdin #stdout 0s 5292KB
stdin
5
c d a b e
stdout
String Size: Enter String : a b c d e