How can I transform a number from the type unsigned int to a float? For then to use mathematical functions in this (number_float). Only positive values. Thank you, CHACK
Use a type cast. For example:
(float) 37;
View all questions in Keil forum