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.
WCHAR *str = L"string";
...
WCHAR chr3[2] = {str[3]};
MessageBox(NULL,chr3,NULL,NULL);
// Now you are free:
chr3[0] = str[4]; ...