Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #ifndef F_H
  2. #define F_H
  3.  
  4. #include <stdio.h>
  5. #define STR_SIZE 20
  6.  
  7. typedef struct Personne Personne;
  8. struct Personne
  9. {
  10. char nom[STR_SIZE], prenom[STR_SIZE], tel[STR_SIZE];
  11. int age;
  12. struct Personne amis;
  13. }
  14.  
  15. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement