Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strncpy(newName, name.c_str(), strlen(name.c_str())) ;
char A[1];
A='j';
char A[2];
A[0]='j';
A[1]= 0;
...or simply:
char A[2] = "j";
..or...
char A[] = "j";
char A = 'j';
string Name="Hi!";
Name += A;