1 2 3 4 5 6 7 8 9 10
float my_foo() { float result = 10.0 + 20.0; return result; } int main(void) { float result = my_foo(); return (int)result; }