What is the output of the following code snippet?          #…

What is the output of the following code snippet?          #include        using namespace std;        void myFunction(int &x, int y);        int main(){               int x = 18, y = 6;               myFunction(y, x);               cout