Programming Code Center(PCC)
[CPP]

(PCC)::[how-to-swap-two-numbers-using-cpp-programming-language]::[cpp]

File Name : Swap_Numbers.cpp

#include <iostream>
using namespace std;

int main()
{
    int a = 5, b = 10, temp;

    cout << "Before swapping." << endl;
    cout << "a = " << a << ", b = " << b << endl;

    temp = a;
    a = b;
    b = temp;

    cout << "\nAfter swapping." << endl;
    cout << "a = " << a << ", b = " << b << endl;

    return 0;
}

Output :

Swap_Numbers.jpg