I found some C code for a microcontroller with this instruction
const void** const MyVariable
What is the difference between const void** const
and const void**
? What is the advantage and when do I use it?
I found some C code for a microcontroller with this instruction
const void** const MyVariable
What is the difference between const void** const
and const void**
? What is the advantage and when do I use it?