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 / 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 |
What are the two shift operators and what are their functions?
Difference between pass by value and pass by reference?
When is the copy constructor called?
Why is c++ considered difficult?
Difference between an inspector and a mutator
What does it mean to declare a member variable as static?
Explain what are single and multiple inheritances in c++?
What is meant by reference variable in C++?
I need to find a specific string between two strings how do I do it?
daily Routine of father
How can virtual functions in c++ be implemented?
What is dev c++ used for?