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
ANSI 'C' has standard rules for this - see a standard 'C' textbook; eg, K&R
Use a type cast. For example:
(float) 37;