how can i sort numbers from ascending order and descending
order using turbo c..

Answer Posted / neha

If you are using the String class to store your names then you can use the < or > operators to compare the order, alphabetically, they appear in.

String names[3];
int numberOfNames = 3;
names[0] = "abc";
names[1] = "dfg";
names[2] = "hij";

printf("before %s%s%s\n", names[0],names[1],names[2]);
for( int i = 0; i < numberOfNames-1; i++ )
{
for( int j = 0; j < numberOfNames; j++ )
{
if( names[j] < names[j+1] )
{
names[j].swap( names[j+1] );
}
}
}

printf("after%s%s%s\n", names[0],names[1],names[2]);


output:
before abcdfghij
after hijdfgabc

Is This Answer Correct ?    4 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

can any one provide me the notes of data structure for ignou cs-62 paper

1893


What is bss in c?

791


Explain how do you determine whether to use a stream function or a low-level function?

817


Can a pointer be volatile in c?

715


Describe static function with its usage?

842


How can I do serial ("comm") port I/O?

901


What is the value of uninitialized variable in c?

781


What are qualifiers and modifiers c?

725


write a program to rearrange the array such way that all even elements should come first and next come odd

2002


What is the purpose of sprintf?

811


Write a program to check whether a number is prime or not using c?

784


Explain built-in function?

803


What is the difference between arrays and pointers?

834


Differentiate between #include<...> and #include '...'

801


Explain how to reverse singly link list.

799