Multiple choice technology programming languages Which datatype can store decimal numbers? unsigned int char Float None of the Above Reveal answer Fill a bubble to check yourself C Correct answer Explanation The float data type is used in C/C++ to store single-precision floating-point (decimal) numbers. unsigned int stores non-negative integers, and char stores single characters or small integers.