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 far *scrPtr=(char far*)0xA0000000l;
long scrIdx=0;
printf("\nColor of the TOP LEFT pixel is %d",*scrPtr);
//filling the screen blue.
for(scrIdx=0;scrIdx<480000;scrIdx++)
scrPtr[scrIdx]=(char)55;