Does there any function exist to convert the int or float to a string?
[A].
Yes
[B].
No
Answer: Option A
Explanation:
1. itoa() converts an integer to a string. 2. ltoa() converts a long to a string. 3. ultoa() converts an unsigned long to a string. 4. sprintf() sends formatted output to a string, so it can be used to convert any type of values to string type.