0_0_14303325_10692.c:11:31: error: macro "Swap" passed 3 arguments, but takes just 2
void Swap(int *a, int m, int n){
^
0_0_14303325_10692.c:11:32: error: expected '=', ',', ';', 'asm' or '__attribute__' before '{' token
void Swap(int *a, int m, int n){
^
0_0_14303325_10692.c: In function 'HeapSort':
0_0_14303325_10692.c:40:21: error: macro "Swap" passed 3 arguments, but takes just 2
Swap(a, 1, i);
^
0_0_14303325_10692.c:40:9: error: 'Swap' undeclared (first use in this function)
Swap(a, 1, i);
^
0_0_14303325_10692.c:40:9: note: each undeclared identifier is reported only once for each function it appears in
0_0_14303325_10692.c: At top level:
0_0_14303325_10692.c:63:1: error: expected identifier or '(' before '--' token
--
^
|