CS 131 Function Exercises Identify for each of the following: local and global variables value and reference parameters the output //*********Example 1********* #include using namespace std; void change(); int main () { int x; x = 0; change(); cout << x; return 0; } void change() { x = 1; } //*********Example 2********* #include using namespace std; void change(); int x; int main () { x = 0; change(); cout << x; return 0; } void change() { x = 1; } //*********Example 3********* #include using namespace std; void change(); int x; int main () { x = 0; change(); cout << x; return 0; } void change() { int x; x = 1; } //*********Example 4********* #include using namespace std; void change(int); int main () { int x; x = 0; change(x); cout << x; return 0; } void change(int y) { y = 1; } //*********Example 5********* #include void change(int&); int main () { int x; x = 0; change(x); cout << x; return 0; } void change(int& y) { y = 1; }