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.
Glad to hear that, which line?
LCDStr((char *)"Hello AGCB!\0");
LCDStr((const char *)"Hello AGCB!\0");
LCDRomStr(rom char *string)
{
while(*string != 0)
{
LCDChar(*string++);
}
}
LCDStr((rom char *)"Hello AGCB!\0");