mirror of
https://github.com/devproje/devproje.git
synced 2025-04-22 07:09:53 +09:00
Update main.c
This commit is contained in:
parent
6595e13124
commit
b61da49f95
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue