програму, що запускається і видає на екран меню з двох пунктів
textmode(BW80);
textcolor(2);
FILE *outfile;
char gid[8], fio[16], ball[10];
char *ptr;
if (fopen(filename, "r") != NULL) return;
if ((outfile = fopen(filename, "w")) == NULL) return;
textbackground(BLACK);
textcolor(LIGHTGREEN);
for(;;)
{
clrscr();
cprintf("Введiть номер групи : ");
fgets(gid, 8, stdin );
ptr = gid;
while (*ptr != 0) {*ptr == '\n'? *ptr=0:*ptr; *ptr == '\r'? *ptr=0:*ptr; *ptr++;}
if (strcmp(gid, " ") == 0)
{
fclose(outfile);
return;
}
fflush(stdin);
cprintf("Введiть им'я студента : ");
fgets(fio, 16, stdin );
ptr = fio;