+ 1
c array printf("Purchases total is %6.2f\n", total); what does 6.2 signifies here?
2 Answers
+ 4
6 numbers to the left of decimal & 2 numbers to the right of decimal
+ 4
Please refer to this reference. Pay close attention to the "width" and "precision" table đ
http://www.cplusplus.com/reference/cstdio/printf/
(Edited)