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

struct Sorte {
	int nr;
	char name[64];
};

struct Sorte produkte[3];

int main() {
	printf("sizeof: %d", sizeof(produkte));
	return 0;
}