1

I'm reading through some code for an Arduino example and I came across this line:

uint16_t pulses[100][2];

It appears that this is defining a 100x2 array -- is that correct?

0

1 Answer 1

6

You are correct. It defines a 100x2 array of unsigned 16 bit integers.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.