#include using namespace std; int main() { char zebra; // char z[] = "hey"; //cout << sizeof("hey") << ' ' << sizeof(z) << endl; char y[3] = {'h','e','y'}; //y[2] = 0; double dog; int x[3] {1,2,3}; cout << x[0] << ' ' << x[1] << ' ' << x[2] << endl; cout << x << endl; //cout << "hey" << endl; // cout << z << endl; cout << y << endl; y[1] = 0; cout << y << endl; }