🟢 Վարժություն 8

Ի՞նչ կտպի ծրագիրը։
#include <iostream>
void swap(int& a, int& b) {
  int tmp = a;
  a = b;
  b= tmp;
  std::cout << a " " << b;
}
int main() {
  swap(0, 100);
}
 
To check your solution you need to sign in
Sign in to continue