//chararray.cpp -- testing out how to feed characters into character array.
//Michael R. Benecke
#include <iostream>
int main()
{
    using namespace std;

    char name[20] = {"Michael"}; //Works fine
    cout << name;

    char name1[20];
    name1 = {'M','i','c','h','a','e','l'}; //Should work 
    cout << name1;

    return 0;
}
