I want to concatenate a char[] with a uint32_t to get another char[] as result:
char word[] = "hi";
uint32_t = 33;
char result[] = "hi33"; //How can I get this ???
The goal is to assemble some data that can be passed to a WriteData
method described here with the following signature...
bool WriteData(char *buffer, unsigned int nbChar);