Save calculation result into a float variable
#include <stdio.h> int main(void) { float f; f = 10 / 3; printf("%f", f); return 0; }