can you """code out""" characters like the blocky ones like in the old games where the char is all blocky

Aug 6, 2016 at 3:38am
Can you code out those little characters like in old games you know like those blocky ones but small and control them or something... Yeah this is pretty...weird

Aug 6, 2016 at 5:18am
Is it related to programming?
Additionally, please clarify your question.
Aug 6, 2016 at 8:59am
Do you mean sth. like this?
1
2
3
4
  for (unsigned char ch = 176; ch <= 178; ch++)
  {
    cout << (int)ch << '\t' << ch << '\n';
  }

Output:
1
2
3
176     ░
177     ▒
178     ▓
Aug 6, 2016 at 5:43pm
Ohhhhhh..thx:)))
Topic archived. No new replies allowed.