Hi everyone. I have a program that I used about six variables in. Five variables I used type double for and the other one I used type int. How do I convert their values into strings?
I tried googling too. When I compiled though I would get some crazy errors telling me that what I am trying to do is illegal. I am using vs 2008. Thanks for the input.
within the prog, lets say double t * double r =double z and t is 3.12487894537 and r is 7894.23568, hypothetcially speaking. We dont know what z is unless we use cout<<z<<.
vs 2008 in windows form app doesnt allow cout. How can I generate what z is and put it on the windows form. I know how to put string type on the windows form app but not type int or double.