From 89c1b590a56fb2ecaafc26e0658e047a7a0893d3 Mon Sep 17 00:00:00 2001 From: Project_TL Date: Sun, 24 Jul 2022 23:22:44 +0900 Subject: [PATCH] feat: include 'stdlib.h' and 'string.h' --- main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main.c b/main.c index 76b4846..1a26ea0 100644 --- a/main.c +++ b/main.c @@ -1,4 +1,6 @@ #include +#include +#include #define MAX_STRING_SIZE 50 @@ -12,7 +14,7 @@ struct person { int main(int argc, char **argv) { struct person *project = malloc(sizeof(struct person)); strcpy(project->name, "Project_TL"); - strcpy(project->job, "Student"); + strcpy(project->job, "Student, Backend Developer"); strcpy(project->email, "me@projecttl.net"); project->age = 18;