1 2 3 4 5 6 7 8 9 10 11 12 13 14
void input(LIST &l) { int n; printf("\nNhap so luong node: "); scanf("%d", &n); init(l); for(int i = 1; i <= n; i++) { KieuDuLieu x; nhap(x); NODE* p = getnode(x); addHead(l, p); } }
1
Line 1: error: expected ')' before '&' token