Hello,
I was wondering if there is anything to convert an integer value to a string value?
I've tried several methods, but they don't seem to work....
Thanks
This is a discussion on int to string within the C++ Programming forums, part of the General Programming Boards category; Hello, I was wondering if there is anything to convert an integer value to a string value? I've tried several ...
Hello,
I was wondering if there is anything to convert an integer value to a string value?
I've tried several methods, but they don't seem to work....
Thanks
Code:int intVar = 12345; char strVar[20]; sprintf(strVar, "%d", intVar);
thanks !