0
Convert string abcD to cdeF
don't use any function
4 Answers
0
i want in c#
0
i faced this question in interview
0
StringBuilder x = new StringBuilder("abcD");
for (int i = 0; i < x.Length; ++i)
x[i] += (char)2;
Console.WriteLine(x);
0
no