8 bit number

Is there a 8-bit-size numberic data type? By ''numberic data type'' I mean that I can use this data type in numerical expressions like (a+2)^b or int i=5*a.
char and unsigned char.
And signed char.

Just "char" by itself may be signed or unsigned depending on the compiler.
int8_t and uint8_t.
Last edited on
For those you must #include <stdint.h>
Thank you!
Topic archived. No new replies allowed.