33 lines
447 B
C
33 lines
447 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main ()
|
||
|
{
|
||
|
typedef struct
|
||
|
{
|
||
|
int life;
|
||
|
int magic;
|
||
|
}Vehicle;
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
Vehicle vehicle;
|
||
|
char brand[10];
|
||
|
}Car;
|
||
|
|
||
|
Car ford;
|
||
|
ford.vehicle.life = 5;
|
||
|
ford.vehicle.magic = 9;
|
||
|
strcpy(ford.brand, "Ford");
|
||
|
|
||
|
printf("The car's life is: %d\n" "The car's magic is: %d\n"
|
||
|
"The car's brand is: %s\n", ford.vehicle.life, ford.vehicle.magic,
|
||
|
ford.brand);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
//code
|
||
|
}
|