Update main.c

This commit is contained in:
WH64 2022-04-28 14:42:22 +09:00 committed by GitHub
parent 6595e13124
commit b61da49f95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
main.c
View file

@ -10,7 +10,7 @@ struct Person {
int main(int argc, char **argv) {
struct Person *dev = malloc(sizeof(struct Person));
strcpy(dev->name, "DEV_Project");
strcpy(dev->name, "Project_TL");
dev->age = 17; // 한국 만 나이
printf("Hello! I'm %d years old %s Nice to meet you!\n", dev->age, dev->name);