Data Type C Tutorial

float   variable;   /* comment */
When using a floating-point number in printf, the %f conversion is used.
To print the expression 1.0/3.0, we use this statement:

#include
int main(void){
    printf("The answer is %f\n", 1.0/3.0);
}
The answer is 0.333333