#ifndef STRUCTS_H #define STRUCTS_H struct User { char* last_name; char* first_name; char* patrinymic; int age; }; struct ResultUserAndCount { struct User user; int count_users; }; #endif // !STRUCTS_H