void bubble (char cList[] ,int size) { // This is the line with the error
int swapped;
int p;
for (p = 1; p < size ; p++)
{
swapped = 0; /*this is to check if the array is already sorted*/
int j;
for(j = 0; j < size - p; j++)
{
if(cList[j] > cList[j+1])
{
int temp = cList[j];
cList[j] = cList[j+1];
cList[j+1] = temp;
swapped = 1;
}
}
if(!swapped)
{
break; /*if it is sorted then stop*/
}
}
}
これは私のコードのスニペットです。size
は既に宣言した定数です。cList
クライアントの配列です。エラーが発生し続けます:
expected ';', ',' or ')' before numeric constant
なぜこれが起こっているのですか?