this continue to stop at 10 and 13. Need Help!
Code:
# include <iostream>
using namespace std;
int main()
{
char k;
for(int i=0; i<127; i++)
{
cout << (char)i;
k= (i+1)%16;
if (k == 0)
cout << "\n";
}
cout << "\n";
return 0;
}
Comment