#include <stdio.h>

typedef struct stFoo 
{
	int a;
	double b;
} stFoo;

typedef struct stBar
{
	int count;
	stFoo* p;

	int x;

} stBar;

static stFoo arFoo[] =
{
	{1,1.1},
	{2,2.2}
};


static const stBar barObj1 =
{
	2,
	arFoo,
	42
};

static const stBar barObj2 =
{
	2,
	arFoo,
	43
};

static stBar arBars[] =
{
	barObj1,
	barObj2
};


int main(void) {
	// your code goes here
	return 0;
}
