#include <stdio.h>
#include <stdlib.h>

int main()
{
	//myStruct is a type that has 2 firelds
	struct myStruct {
		int Anint;
		float AFloat;
	};

	// make an instance of mtStruct called M
	struct myStruct M;
	// fill its fields and print them
	M.Anint = 1;
	M.AFloat = 1.2f;
	printf ("M has values:\n InInt=%d\n AFloat=%f\n", 
			M.Anint, M.AFloat);
	
	return 0;
}

