#include using namespace std; void swap1(int n1, int n2) { int temp = n1; n1 = n2; n2 = temp; } void swap2(int& n1, int& n2) { int temp = n1; n1 = n2; n2 = temp; } void swap3(int* p1, int* p2) { int temp = *p1; *p1 = *p2; *p2 = temp; } void swap4(int* &p1, int* &p2) { int* temp = p1; p1 = p2; p2 = temp; } int main() { int num1 = 1; int num2 = 2; cout << "before invoking the swap1 function, num1 is " << num1 << " and num2 is " << num2 << endl; swap1(num1, num2); cout << "after invoking the swap1 function, num1 is " << num1 << " and num2 is " << num2 << endl; cout << "before invoking the swap2 function, num1 is " << num1 << " and num2 is " << num2 << endl; swap2(num1, num2); cout << "after invoking the swap2 function, num1 is " << num1 << " and num2 is " << num2 << endl; cout << "before invoking the swap3 function, num1 is " << num1 << " and num2 is " << num2 << endl; swap3(&num1, &num2); cout << "after invoking the swap3 function, num1 is " << num1 << " and num2 is " << num2 << endl; int* p1 = &num1; int* p2 = &num2; cout << "before invoking the swap4 function, p1 is " << p1 << " and p2 is " << p2 << endl; swap4(p1, p2); cout << "after invoking the swap4 function, p1 is " << p1 << " and p2 is " << p2 << endl; return 0; }
Get the answer
Category: womensstudies |
Author: Ehud Raghnall
Related Questions
#l2 letter to the editor television and motion pictures have been dist

$ which word in the sentence below is a possessive noun?iei found som

$ where t is the number of a =500 the milligrams of aspirin in a pers

Category
art
$ $ the circle graph below shows the percent of students in jim's class that prefer each sport. baseball: 30% basketball: 15% soccer: 10% x football:
literature
$ 20,000 is invested at a rate of 5% compounded quarterly. identify the compound interest function ta model the situation. then find the balance after
science
$ = {even numbers above 20 and less than 50} a = {26, 30, 32, 44, 48}b = {22, 26, 34}a) complete the venn diagram to show information. a number is ch