C/learnc/learnc9.c
2023-09-23 22:20:41 +03:00

15 lines
232 B
C
Executable File

#include <stdio.h>
typedef struct {
char * name;
int age;
} person;
int main() {
person john;
/* testing code */
john.name = "John";
john.age = 27;
printf("%s is %d years old.", john.name, john.age);
}