Advertisement
Guest User

Untitled

a guest
Dec 6th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. void researchOktet() {
  2.     char c = 0b00000001;
  3.     printf("c: %h \n", c);    
  4. }
  5. c: 1
  6. Program ended with exit code: 0
  7.  
  8. void researchOktet() {
  9.     char c = 0b00000002;  // Invalid digit '2' in binary constant
  10.     printf("c: %h \n", c);    
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement