Review the following C++ code and flag the issue.
1#include <cstdio>
2#include <cstring>
3
4void greet_user() {
5 char name[32];
6 printf("Enter your name: ");
7 char input[256];
8 fgets(input, sizeof(input), stdin);
9 strcpy(name, input);
10 printf("Hello, %s\n", name);
11}