8. Suppose I have the following function, char willretAnything(param ). Return by value the following variable char anyThing and complete the following function.
Char willretAnything( ){
}
THE PROGRAMMING LANGUAGE IS C++

char willretAnything() {
char anyThing;
anyThing = 'M';
return anyThing;
}

#include <iostream>
using namespace std;
char willretAnything() {
char anyThing;
anyThing = 'M';
return anyThing;
}
int main() {
cout << willretAnything() << endl;
return 0;
}
8. Suppose I have the following function, char willretAnything(param ). Return by value the following variable...