I currently learning the C programming language and I am not sure of what the width in a float is?
I have changed the precision of the float already and it added 0
after the .
and when I changed the value of the width it just added blank spaces behind
new_price = price + increase;
printf("New price is %4.2f", new_price);
return 0;