#include <iostream>

using namespace std;

int main(){

    char a = 'a';
    char word3[] = "spam";
    char word[] = {'h','e','l','l','o'};
    char word2[] = {'h','e','p','p','o','\0'};


    cout << "address of var a is " << static_cast<void*>(&a) << endl;
    cout << "value of var a is " << a << endl;
    cout << word <<"\n";
    cout << word2 <<"\n";

    //cout << sizeof(char) << endl;

    return 0;
}

