Skip to content

Latest commit

 

History

History

0x0E-structures_typedef

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Tasks for this project:

  1. Define a new type struct dog with the following elements: name, age and owner
  2. Write a function that initialize a variable of type struct dog
  3. Write a function that prints a struct dog
  4. Define a new type dog_t as a new name for the type struct dog
  5. Write a function that creates a new dog
  6. Write a function that frees dogs.