-florian66-

test

Apr 10th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.39 KB | None | 0 0
  1. struct Element
  2. {
  3.     unsigned char nom[14]; // le nom
  4.     unsigned char symbol[4]; // le symbole
  5.  
  6.     unsigned int groupe : 3;
  7.     unsigned int periode : 5;
  8.     unsigned int valence : 4;
  9.     unsigned int masse_mol : 20;
  10.  
  11.     unsigned int electro_neg :9;
  12.     unsigned int famille : 4;
  13.     unsigned int etat : 3;
  14.    
  15.     unsigned char config_electro[7];// la config électronique
  16. }
Advertisement
Add Comment
Please, Sign In to add comment