#include int main(){ float one = 1.0f; float three = 3.0f; float repeating = one / three; float as_const = 1.0f / 3.0f; printf("repeating: %lf\n", repeating); printf("as_const: %f\n", as_const); float neg = -1.0f; printf("neg = %lf\n", neg); return 0; }