I have a list of float values and I want to print them with cout with 2 decimal places.
float
cout
For example:
10.900 should be prin
#include int main() { double d=15.6464545347; printf("%0.2lf",d); }