I am using Ubuntu Linux for programming purposes. Yesterday I came across a very strange problem that was really really obscure and was weird.
The problem was that I tried to do bubble sort, logic, syntax everything was correct but the output was wrong. I wrote same program in Windows and it worked fine. I am using Eclipse IDE in Linux. What can be the problem? On The other side I used pointers (call by reference) to accomplish bubble sort, but in Ubuntu the output was also wrong, while in Windows the output was okay. I don't know how to figure it out.
My code for bubble sort is as following:
#include<stdio.h>
void main(void)
{
int array[] = {4,2,6,3,1,5,8,4,6,1};
int i=0;
int j=0;
for(i=1;i<=10;i++)
{
for(j=0;j<=10-i;j++)
{
if(array[j]>array[j+1])
{
int temp = array[j];
array[j] = array[j+1];
array[j+1] = temp;
}
}
}
for(i=0;i<=9;i++)
{
printf("%d\t",array[i]);
}
}
Output:
gcc -o bubblesort.c -o output
./output
2 3 4 1 5 6 4 6 1 1
i=1,j=9,array[j+1]is an invalid access => your code exhibits undefined behavior. – Mat Oct 5 '12 at 11:23GNU C compiler Linux output is wrong-- it's extremely rare for this statement to mean what you thought it meant when you typed it. Almost always, it means you have messed something up, not the compiler. – mah Oct 5 '12 at 11:25