I'm trying to learn C by reading this book. I have some programming experience but not with C.
I'm currently in Chapter 1. I have the following code:
float f;
for (f = 0.0; f <= 3; f += 1.1)
printf("A: %3f B: %6.2f\n", f, f + 0.15);
It prints the output:
A: 0.000000 B: 0.15
A: 1.100000 B: 1.25
A: 2.200000 B: 2.35
Looks fine.
Now I change the printf as follows:
printf("A: %3d B: %6.2f\n", f, f + 0.15);
The new output is
A: 0 B: 0.00
A: -1610612736 B: 0.00
A: -1610612736 B: -625777476808257557292155887552002761191109083510753486844893290688350183831589633800863219712.00
What's going on here? I would expect the float to be converted to int because I used %d but that's not what happened. Also, why did the the value B go wrong as well? What happened to f here?