The source code to convert an integer number into the string is given below. The given program is compiled and executed successfully.
# Ruby program to convert an
# integer number into string
num = 10;
result = num.to_s();
print "String: ",result;
Output:
String: 10
Explanation:
In the above program, we created a variable num initialized with 10. Then we converted the integer number into the string using the to_s() function and printed the result.
Program/Source Code:
The source code to convert an integer number into the string is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we created a variable num initialized with 10. Then we converted the integer number into the string using the to_s() function and printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer