Kết quả của chương trình sau là gì #include
Trả lời:
Đáp án đúng: B
The code has an error because the `hoanvi` function expects pointers as arguments (int *), but the function call `hoanvi(a, b)` passes the values of `a` and `b` (int) instead. This leads to a type mismatch, resulting in a compilation error. The correct way to call the function is to pass the addresses of `a` and `b` using the `&` operator: `hoanvi(&a, &b)`.





