mirror of
https://github.com/Karmaz95/Snake_Apple.git
synced 2026-03-30 14:00:16 +02:00
9 lines
191 B
C
9 lines
191 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main() {
|
|
char buffer[10];
|
|
strcpy(buffer, "Hello, World!"); // Vulnerable operation
|
|
printf("You entered: %s\n", buffer);
|
|
return 0;
|
|
} |