Began to study the structure. I want to write this correctly so that the compiler does not swear.
#include<conio.h> #include<stdio.h> struct selfish { char city[30]; }; struct Man { char *fio[60]; int year; int month; struct selfish; }; int main() { struct Man myself; gets_s(myself.fio); puts(myself.fio); _getch(); return 0; }