You have to take 2 arrays of length 10. Input the values of
array 1 from the user. Then copy the values of array 1 to
array 2 in ascending order
For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3
then copy the smallest element i.e. 0 first followed by 1,
2 and so
Answer Posted / prasenjit roy
#include "stdio.h"
#include "conio.h"
int main(int argc, char* argv[])
{
int arr[]={9, 5, 6, 8, 1, 0, 2, 7, 4, 3},i,j,iTmp;
printf("original :: ");
for ( i = 0; i < sizeof(arr)/sizeof(int) ; i++)
printf("%d, ",arr[i]);
printf("\b\b \n");
for ( j = 0; j < sizeof(arr)/sizeof(int) -2; j++ )
{
for ( i = sizeof(arr)/sizeof(int) -1; i >
j ; i-- )
{
if ( arr[i] < arr[j] )
{
iTmp = arr[j];
arr[j] = arr[i];
arr[i] = iTmp;
}
}
}
printf("modified :: ");
for ( i = 0; i < sizeof(arr)/sizeof(int) ; i++)
printf("%d, ",arr[i]);
printf("\b\b \n");
while( ! _kbhit() );
return 0;
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Is arr and &arr are same expression for an array?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What can c++ be used for?
Define whitespace in C++.
Can a program run without main function?
What's the hardest coding language?
What is recursion?
What is the best it certification?
Can a constructor return a value?
What is type of 'this' pointer? Explain when it is get created?
How does a C++ structure differ from a C++ class?
Is c++ primer good for beginners?
How a new operator differs from the operator new?
Do you need a main function in c++?
Will rust take over c++?