Jul 26, 2011 at 10:42pm
I need help making this code below print 10 ascii characters per line. Any help is appreciated.
#include <iostream>
using namespace std;
int main()
{
for (int i = 33; i < 127; i++)
{
std::cout << i << ": " << (char)i << std::endl;
}
return 0;
}