Is there a way to print extended ASCII in C??
I tried to code something, but it only displays strange symbols.
here is my code:
main()
{
char chr = 177; //stores the extended ASCII of a symbol
printf("Charact er with an ascii code of 177: %c \n", chr);
//tries to print an ASCII symbol...
return 0;
}
thankx
I tried to code something, but it only displays strange symbols.
here is my code:
main()
{
char chr = 177; //stores the extended ASCII of a symbol
printf("Charact er with an ascii code of 177: %c \n", chr);
//tries to print an ASCII symbol...
return 0;
}
thankx
Comment