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 ch = 'A';
char ch = 65;
char ch = 0x41;
printf("%d", ch);
[\code]
To output hex 0x41:
[code]
printf("0x%X", ch);
[\code]
To output character ¡¥A¡¦:
[code]
printf("'%c'", ch);
[\code]
Hope this answer your question.
Shyan