Skip to content

Latest commit

 

History

History

0x0D-structures_typedef

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

0x0D. C - Structures, typedef

Description

What you should learn from this project:

  • What are structures, when, why and how to use them
  • How to use typedef

  • Define a new type struct dog
  • Write a function that initialize a variable of type struct dog
  • Write a function that prints a struct dog
  • Define a new type dog_t as a new name for the type struct dog.
  • Write a function that creates a new dog.
  • Write a function that frees dogs.

Author