#include struct SomeType { char *login; char *name; int age; }; typedef struct SomeAddr { char *street; int house_number; char *city; int postal_code; } address; // novy datovy typ int main() { struct SomeType student1; student1.name = "Marty Login"; student1.login = "xlogin00"; student1.age = 42; printf("Login: %s\n\n", student1.login); address recipient = {"Boulevard", 42, "Las Vegas", 89109}; printf("Address of recipient:\n %s %d\n %s, %d", recipient.street, recipient.house_number, recipient.city, recipient.postal_code); return 0; }