Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. //all of the code below are in the same ino file.
  2. class Animal{
  3. public:
  4. bool alive = false;
  5. Animal (bool liveStatus){
  6. alive = liveStatus;
  7. }
  8. }
  9.  
  10. Animal dog(false);
  11.  
  12.  
  13. void setup(){
  14. dog.alive = true;
  15. //here when I print dog's alive flag it's true
  16. }
  17.  
  18. void loop(){
  19. // here the alive flag of dog is still false , it should be true!!
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement