Operating System - HP-UX
1752772 Members
5081 Online
108789 Solutions
New Discussion юеВ

Re: ASCII Code (128-255) in HP9000

 
Jiang John
New Member

ASCII Code (128-255) in HP9000

It is first time for me to program on HP9000, but there is nowhere to get ASCII
Code in HP9000,who can help me?thanks.
2 REPLIES 2
Zhang Zhao gui
Frequent Advisor

Re: ASCII Code (128-255) in HP9000

You can try the following code but I don't see it is meaningful to do that.
Because most of the ASCII characters between 128-255 are unprintable.
main()
{ int i;
for(i=128;i<255;i++)printf("i=%d,char=%c\n",i,i);
}
John Jiang
New Member

Re: ASCII Code (128-255) in HP9000

Hi Zhang,

Thanks for your advice.
The fact is that we develop program on our SUN workstation and debug on HP
workstation of a IC test system(rented by time),but the ASCII code(128-255)
between them is defferent.
What we really want is the ASCII code defference between HP and SUN,where to
get the help???