Guest User

Untitled

a guest
Apr 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. const int n = 100;
  2.  
  3. union Chromosome {
  4. double val[n];
  5. unsigned char bits[n * sizeof(double)];
  6. };
Add Comment
Please, Sign In to add comment