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.
char *pattern = new char[2]; // you need one more space for the ‘\0’ character
strcpy(pattern, "\t"); // char[0] is ‘\t’, char[1] is ‘\0’