Okay so this is getting on my nerves now. Say I have a string like this
"The average value for box 1 is:" and I have a float variable containing digits. How do i make the final result like this:
"The average value for box 1 is: 12.01" ?? In Java we use
"The average value for box 1 is:" + avg1
According to cout usage and stuff it should be.
"The average value for box 1 is:" << avg 1. But that doesnt work :)
Any help appreciated.
Thanks!
Note: Im planning on using this with a Message box.