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.
#include <iostream>
#include <iomanip>
int main()
{
char c = 'A';
std::cout << " char: " << c << std::endl;
std::cout << "decimal: " << static_cast<int>(c) << std::endl;
std::cout << " octal: 0" << std::oct << static_cast<int>(c) << std::endl;
std::cout << " hex: 0x" << std::hex << static_cast<int>(c) << std::endl;
}