Question
Could you please tell me to array to string?
Posted on May 17, 2018 at 04:07
Dear All;
I would like to know when I have array and I would like to convert array to string.
char A[6] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G' };
char *B;
I would like to
*B = 'ABCDEFG';
How should I do?
#c #hal