Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
Explain the difference amongst the following 3 functions:
void swap1(int x, int y) {
int temp = x;
x = y;
y = temp;
}
void swap3(int *x, int *y) {
int temp = *x;
*x = *y;
*y = temp;
}
void swap2(int &x; int &y) {
int temp = x;
x = y;
y = temp;
}
Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.
Đăng nhập
VoTanDuc
đã bình luận
18:39 25-01-2022
Hàm swap1: hoán đổi 2 vị trí của x và y dùng tham trị