9 lines
205 B
C++
Raw Normal View History

2024-08-25 15:42:07 -06:00
// Demonstrate printing characters with numbers take 2
#include <iostream>
int main()
{
for (unsigned char i = 0; i<128; i++)
std::cout << "i is equal to:\t" << i << std::endl;
return 0;
}