Suchergebnisse für Anfrage "gets"
C: gets () überspringt die erste Eingabe [closed]
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> typedef struct record { char name[20]; char surname[20]; char telephone[20]; }Record; typedef struct node { Record data; struct node *next; }Node; Node *head = NULL; ...
Seite 2 von 2