Top "Uint32-t" questions

'uint32_t' does not name a type

I'm trying to compile a C++ software package that was written in 2007 and I'm getting this error: error: ‘uint32_t’ …

c++ uint32-t cstdint
Difference between uint32 and uint32_t

Possible Duplicate: Difference between different integer types What is the difference between uint32 and uint32_t in C/C++? Are …

c++ c uint32 uint32-t
What is *(uint32_t*)?

I have a hard time understanding *(uint32_t*). Let's say that I have: uint32_t* ptr; uint32_t num *(uint32_…

c uint32-t
How can i convert a uint32_t to a char* type

Hello i am using an Arduino UNO with an adafruit shield to display score values but the function used to …

c++ c char arduino uint32-t
How to print hex from uint32_t?

The code I have been working on requires that I print a variable of type uint32_t in hexadecimal, with …

c++ c printf unsigned uint32-t
error : conflicting declaration for uint32_t

When I try to compile my program first I got this error: error: ‘uint32_t’ does not name a type …

c++ cuda typedef uint32 uint32-t
unsigned long and uint32_t?

I'm studying socket programming and I learned inet_addr function. But I'm confused how can I handle in_addr_t …

c sockets unsigned-long-long-int uint32-t
Convert uint8_t hex value to binary

So like it says in the title I am trying to convert a hexadecimal into a binary. But the problem …

c binary hex bit-manipulation uint32-t