C program to sort string in ascending order.

#include<stdio.h>
#include<conio.h>
#include<string.h>
int main()
{
    char str[100], chTemp;
    int i, j, len;
    printf("Enter any string: ");
    gets(str);
    len = strlen(str);
    for(i=0; i<len; i++)
    {
        for(j=0; j<(len-1); j++)
        {
            if(str[j]>str[j+1])
            {
                chTemp = str[j];
                str[j] = str[j+1];
                str[j+1] = chTemp;
            }
        }
    }
    printf("\nSorted String:\n%s", str);
    getch();
    return 0;
}
C program to sort string in ascending order. C program to sort string in ascending order. Reviewed by on December 26, 2019 Rating: 5

No comments:

Powered by Blogger.