keywords:
*float
*bool
*void
*char
*long
*int
*enum
*if
*do
*else
*true
*for
*goto
*case
*this
*try
*asm
A 4-byte floating point type. Has the narrowest range out of the three floating point types in C++.
float area(float radius) {
const float pi = 3.14159f;
return pi*radius*radius;
}