Hi all,
I just started programming.Can anyone please help me how to remove the non-printable characters of ascii from my code..I will really appreciate it.
#include <iostream>
using namespace std;
int main()
{
int num;
cout<<" ASCII CODES\n -----------"<<endl;
num = 32;
while(num<=252){
cout<<endl<<char(num)<<" : "<<int(num);
num++;
}
cout<<endl;
return 0;
}
Thanks a million!
Sana