Advertisement
ASP_Volume2 Coding Standards #40590

ASCII list

Show a list of the entire ASCII list... Sometimes good to have. Just made the code for fun. Good to learn basics from.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
//ice_t@dosgames.com
//If you want this in a file just do: charlist.exe > charlog.txt
//I hope you can use it for something :)
#include <iostream.h>
int main()
{
for (int charnr = 0; charnr < 256; charnr++)
	cout << (char)charnr << " = " << charnr << "\n";
return 0;
}
Original Comments (3)
Recovered from Wayback Machine