Answers for "how to make int from string"

C++
5

how to make an int into a string java

int i=10;  
String s=String.valueOf(i);
Posted by: Guest on September-08-2020
1

int to string

int a = 10;
char *intStr = itoa(a);
string str = string(intStr);
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language