#include <stdio.h>

typedef struct {
	int	wert1,
		wert2;
} STRUCT;

void main(void)
{
	STRUCT	struct1;
	int		tmp;
	
	struct1.wert1 = 42;
	struct1.wert2 = 24;

	printf("Wert 1 ist %d, Wert 2 ist %d\n",struct1.wert1,struct1.wert2);

	tmp = struct1.wert1;
	struct1.wert1 = struct1.wert2;
	struct1.wert2 = tmp;

	printf("Wert 1 ist %d, Wert 2 ist %d\n",struct1.wert1,struct1.wert2);

	printf("Bitte Enter drcken...\n");
	getchar();
}