how can i sort numbers from ascending order and descending
order using turbo c..
Answer / 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 |
Are the variables argc and argv are always local to main?
What is volatile, register definition in C
Why do we use namespace feature?
Why is c called a mid-level programming language?
What is calloc()?
Explain what does a function declared as pascal do differently?
Explain the red-black trees?
What are the differences between Structures and Arrays?
Why does notstrcat(string, "!");Work?
How can you tell whether two strings are the same?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
what is difference b/w extern & volatile variable??