I want to read in an int. For example 001. After I want to cut up the into so that A = 0, B = 0 and C = 1. I want to do this in C. Thanks!
|
If
|
|||||||||||||||
|
|
You can achieve the result wanted by using modulus operator (%) and integer division (/). It's easier to understand than bitwise operators when you're starting to learn C.
|
|||
|
|
Building on Karl Bielefeldt's comment: You can create a union of a char and a bitfield such as:
...then assign a value to sample_byte.byte and access each individual bit as sample_byte.b0, sample_byte.b1, etc. The order in which the bits are assigned is implementation dependent--read your compiler manual to see how it implements bitfields. Bitfields can also be created with larger int types. Edit (2011-03-15): Assuming that maybe you want to read in a 3-digit base-10 integer and split the three digits into three variables, here's some code that should do that. It hasn't been tested so you might need to do some tweaking:
Good luck! |
||||
|
|
isdigit()and also remove the ending '\0' – Peyman Feb 1 '11 at 22:14