Advertisement
Java_Volume1 Coding Standards #100196

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

Resumo por IA: 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.

Código fonte
original-source
//[email protected]
//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;
}
Comentários originais (3)
Recuperado do Wayback Machine