Home > OS >  How can an 8-bit char data type contain so many weird characters?
How can an 8-bit char data type contain so many weird characters?

Time:04-23

I am trying to figure out why can an 8-bit char data type contain all these weird characters since they are not part of the first 256 characters table.

#include <iostream>

int main()
{
    char chars[] = "           
  • Related