I saw \"1/3.f\" in a program, and wondered what the \".f\" was for. So tried my own program:
#include using namespace std; int main() {
3.f is short for 3.0f - the number 3.0 as a floating point literal of type float.