0
How to combine characters to become and output as a single string?
Character to String
2 ответов
+ 2
In which language?
What is your try..?
- 1
In java
String str="";
char c="G";
str += c;
In python it's same as string concatenation
In C++
There are multiple ways but most simple is
char c="A";
String s;
s += c;