for(int i=0;i<n-1;i=i+2){
int smallest,secondsmallest;
smallest=i;
secondsmallest=i+1;
Think about it: what happen when data[i] is not smaller than data[i+1] ?
When you don't understand what your code is doing or why it does what it does, the answer is
debugger.
Use the debugger to see what your code is doing. Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute, it is an incredible learning tool.
Debugger - Wikipedia, the free encyclopedia[
^]
Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[
^]
Basic Debugging with Visual Studio 2010 - YouTube[
^]
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't find bugs, it just help you to. When the code don't do what is expected, you are close to a bug.
[Update]
By the way:
int x[10]=[2,5,8,7,9,12,88,74,3,10]
is missing the ";" at the end of line.
Try with:
int x[10]=[2,1,4,3,6,5,8,7,10,9];
to see the problem when data[i] is not smaller than data[i+1]