Нужна помощь в настройке алфавитного списка из файла, состоящего из нескольких строк символов 7
#c #struct #c #структура Вопрос: #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> struct dictionary { char *data; struct dictionary *nextPtr; }; typedef struct dictionary Dictionary; typedef Dictionary* DictionaryPtr; //…