Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void researchOktet() {
- char c = 0b00000001;
- printf("c: %h \n", c);
- }
- c: 1
- Program ended with exit code: 0
- void researchOktet() {
- char c = 0b00000002; // Invalid digit '2' in binary constant
- printf("c: %h \n", c);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement