我在以下程序中遇到错误。我无法弄清楚为什么我无法在数组中存储值
main()
{
int A[10];
A = {3,1,2,3,4,1,5,8,9,0};
printArr(A,10);
printf("\n");
BubbleSort(A,10);
printArr(A,10);
printf("\n----------------Bubble Sort Efficiently ---------------------\n");
printf("\n");
A = {3,1,2,3,4,1,5,8,9,0};
BubbleSortEfficient(A,10);
printArr(A,10);
return 0;
}
这是我得到的错误:
73: error: expected expression before ‘{’ token
80: error: expected expression before ‘{’ token
请说明我无法存储数组元素的原因。