#include <iostream>
#include <cstdint>
int main() {
std::uint8_t i{5}; // direct initialization
std::cout << i;
return 0;
}
I could not able to get the value 5 rather I am getting some other.
Why this code gives me some other ASCII value rather than giving value 5?