Code:
#include <iostream>
using namespace std;

struct Measurements
{
int lenght;
int width;
int height;
//need a constructor

Measurements()
{
lenght = 1;
width = 2;
height = 3;
}

}; 

//its not much code , but why would this crash
int main()
{
Measurements *Measure;    
cout<<Measure->height<<endl;
return 0;
}