6_3_1_4_02_int_to_float.c (71B)
1 int test_main(void) { 2 int n = 42; 3 double d = n; 4 return (int)d; 5 }