Home > database >  The problem of the output after string concatenation
The problem of the output after string concatenation

Time:11-01

Why the output has a pair of double quotes inside?
A is not initialized to an empty character?
And the following questions are output with a pair of double quotes

CodePudding user response:

B="? Hello ";
C="w";
A="";
A=string concat (b, "", c);
  • Related