| 7 | using namespace std; |
| 8 | |
| 9 | int main2() |
| 10 | { |
| 11 | int a, b; |
| 12 | cout << "Enter two numbers: "; |
| 13 | cin >> a >> b; |
| 14 | swap(a, b); // C++ function to swap two numbers |
| 15 | cout << a << " & " << b << endl; // swap is the function which is contained in c++ ==> |
| 16 | //==> there is no need to open new function to swap |
| 17 | return 0; |
| 18 | } // ending the function main |
nothing calls this directly
no outgoing calls
no test coverage detected