#include using namespace std; void Fun1(char c); int main() { int y{42}; Fun1('y'); Fun1('y'); for (int y =0; y < 10; y++) { cout << " y = " << y << endl; { char y{'c'}; cout << " y = " << y << endl; } } cout << " y = " << y << endl; return 0; } void Fun1(char c) { static int x {7}; cout << "in fun 1 and x = " << x << endl; ++x; cout << "the parameter is " << c << endl; return; }