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
can any one provide me the notes of data structure for ignou cs-62 paper
What is bss in c?
Explain how do you determine whether to use a stream function or a low-level function?
Can a pointer be volatile in c?
Describe static function with its usage?
How can I do serial ("comm") port I/O?
What is the value of uninitialized variable in c?
What are qualifiers and modifiers c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What is the purpose of sprintf?
Write a program to check whether a number is prime or not using c?
Explain built-in function?
What is the difference between arrays and pointers?
Differentiate between #include<...> and #include '...'
Explain how to reverse singly link list.