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 ch1 = 'A'; // 'A' is really just another way of writing 65
char ch2 = 65; // ch2 == 'A'
char ch3 = 'A' + 1; // ch3 == 'B'