Print Character from number/ASCII value

#include <iostream.h>
int main()
{
 for (int i = 32; i<128; i++)
 cout << (char) i<<endl;
 return 0;
}

Post a Comment

0 Comments