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.
strcpy(sales[i].MyData, "Some text");
sales[i].MyData[9]='\0';
//or use strcncpy()
strncpy(sales[i].MyData, "Some text",9);