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

typedef struct Test
{
	int a;
	int b;
	char c;
} Test;

int main(void)
{
	Test *obj = (Test*)malloc(sizeof(Test));

	printf("Size results:\r\n\r\nstruct: %i\r\nint #1: %i\r\nint #2: %i\r\nchar #1: %i\r\n", 
		sizeof(Test), sizeof(obj->a), sizeof(obj->b), sizeof(obj->c));

	return 0;
}