Trình biên dịch cứ báo lỗi này. Tại vì mình nghĩ là tham biến nên khai báo như vậy nhưng gcc vẫn báo lỗi.
error: expected ‘;’, ‘,’ or ‘)’ before ‘&’ token
error: expected ‘;’, ‘,’ or ‘)’ before ‘&’ token
Code:
#include<stdio.h> void convert(int &x, int &y){ int x,y,temp; temp = x; x = y; y = temp; return 0; } int main(){ int a,b; printf("Input a,b \n"); scanf("%d%d",&a,&b); hoanvi(&a, &b); printf("%d\t%d\n",a,b); return 0; }
Comment