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.
const char* days[12] =
{ "Partridge in a pear tree",
"day 2","day 3" etc...
};
for(int i = 0;i<12;i++)
{
cout<<days[i]<<endl;
}