I
I
Ivan Yakushenko2016-04-23 18:15:19
C++ / C#
Ivan Yakushenko, 2016-04-23 18:15:19

What can be stored in the uint8_t variable?

In the course of passing the "course" I encountered in one program using the uint8_t variable, but I can not find anywhere what is stored in it. Here is a piece of code where it is initialized:

uint8_t buffer[512];
uint8_t check[4];

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
Ivan Bogachev, 2016-04-23
@kshnkvn

uint8_t is an 8-bit unsigned integer. You can see other similar types here .

P
Peter, 2016-04-23
@petermzg

The variables here are buffer and check, which have a uint8_t array data type.
uint8_t = byte

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question