#include <stdio.h>
#include <string.h>

        struct Mytype
        {
                char name[20];
                int Number;
                float BigNumber;
                char digits[5];
        };


void print_high_low_customer(struct Mytype *var);

int main()
{

/*	struct Mytype
	{
		char name[20];
		int Number;
		float BigNumber;
		char digits[5];
	};
*/

	struct Mytype cst[99];
	int high=1, low=0;
	int i;
	
	for(i=0; i < 2; i++) {
		cst[i].name[0] = 't';
		cst[i].Number = 10+i;
		cst[i].BigNumber = 15+i;
		cst[i].digits[0] = 'k';
	}
	
	print_high_low_customer(&cst[low]);
	print_high_low_customer(&cst[high]);
	return 0;
}


void print_high_low_customer(struct Mytype *c)
{
	 printf("%s",  c->name);
	 printf("%i", c->Number);
	 printf("%g", c->BigNumber);
	 printf("%s\n\n\n", c->digits);
}
