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



You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the v..

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

Post New Answer

More C++ General Interview Questions

What is setw manipulator in c++?

0 Answers  


Have you used MSVC? What do you think of it?

2 Answers   Google,


How can you link a c++ program to c functions?

0 Answers  


How to tokenize a string in c++?

0 Answers  


Distinguish between a # include and #define.

0 Answers  






What is c++ and its uses?

0 Answers  


Difference between a copy constructor and an assignment operator.

0 Answers  


Explain differences between alloc() and free()?

0 Answers  


What is the auto keyword good for in c++?

0 Answers  


What is a dll entry point?

0 Answers  


What is 'Copy Constructor' and when it is called?

1 Answers  


Can comments be nested?

0 Answers  


Categories