Skip to content
Snippets Groups Projects
variable_echange1.cpp 177 B
Newer Older
  • Learn to ignore specific revisions
  • #include <iostream>
    using namespace std;
    
    int main() {
        int a, b;
        a = 7;
        b = 4;
    
        a = b;
        b = a;
    
        cout << a << endl;
        cout << b << endl;
        return 0;
    }