Files
TRPO_2_lab_fork/askname.c
2026-09-22 15:06:34 +03:00

14 lines
342 B
C

#include <stdio.h>
#include <string.h>
void askname(char *first, char *last)
{
printf("Enter your first name: ");
fgets(first, 255, stdin);
first[strlen(first)-1] = '\0'; /* remove the newline at the end */
printf("Now enter your last name: ");
gets(last); /* buffer overflow? what's that? */
// Stashed changes 2
}