// Lecture : Introduction to C++ - Constants and Literals // OCSALY IDE : CLion #include int main() { int pog = +1; int nog = -1; double micro = 1e-6; double unit = 1.; int myHex = 0x100; // 256 in decimal std::string name = "OCSALY"; printf("%d", myHex); // std::dec(); // DECIMAL BASE 10 // std::oct(); // OCTAL BASE 8 // std::hex(); // HEXADECIMAL BASE 16 // // std::showbase(); return 0; }