Joined
Last Seen
-8 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
0 Endorsements
Ranked #107.70K
1 Posted Topic
There is an extended set of characters beyond ASCII. These are between 128 and 255 values. Here you can see also the Greek characters. [CODE]/* This program displays all printable characters, including the extended character set, if one exists. */ #include <iostream> using namespace std; int main() { unsigned char …
The End.
Plato_1981