#include <iostream>

using namespace std;

struct Cow{
    int legs;
    double weight;
    char * name;
    char initial;
    char initial2;
};

int main(){

    Cow c1 = {4,1365};

    cout << c1.legs << endl;

    cout << "my cow is this big: " << sizeof(Cow) << endl;

    return 0;
}

