Jun 24 2007 06:32 PM 7295 4 program should print it as "aabbcc""> To take a string from the User & then arrange the characters in that string in ascending order like if user enters "babcac" the program should print it as "aabbcc" nadeem madhwaraj Profile Answers by madhwaraj Questions by madhwaraj Jun 29th, 2008 Using count sort will be more helpful in this case. baseersd Profile Answers by baseersd Questions by baseersd Jul 19th, 2007 Here is the code for sorting a string in ascending order or alphabetical order#include<stdio.h>int main(){ char str[20]=""; char temp; &n... Answer Question Select Best Answer
Jun 24 2007 06:32 PM 7295 4 program should print it as "aabbcc""> To take a string from the User & then arrange the characters in that string in ascending order like if user enters "babcac" the program should print it as "aabbcc" nadeem madhwaraj Profile Answers by madhwaraj Questions by madhwaraj Jun 29th, 2008 Using count sort will be more helpful in this case. baseersd Profile Answers by baseersd Questions by baseersd Jul 19th, 2007 Here is the code for sorting a string in ascending order or alphabetical order#include<stdio.h>int main(){ char str[20]=""; char temp; &n... Answer Question Select Best Answer
madhwaraj Profile Answers by madhwaraj Questions by madhwaraj Jun 29th, 2008 Using count sort will be more helpful in this case.
baseersd Profile Answers by baseersd Questions by baseersd Jul 19th, 2007 Here is the code for sorting a string in ascending order or alphabetical order#include<stdio.h>int main(){ char str[20]=""; char temp; &n...