#include using namespace std; int main() { auto autovar = 'a';//i will be changing this initialization through my testing proccess. cout << "value stored in auto typed variable - > " << autovar << endl; cout << "enter value to put in auto typed variable: " ; cin >> autovar; cout << "value stored in auto typed variable - > " << autovar << endl; return (0); }