Tagged Questions
1
vote
3answers
240 views
Displaying the ≥ and ≤ ASCII characters in a C Application
I am currently writing a C application and I need to display the following symbols in the terminal : ≥ and ≤
Their ASCII character codes are 242 and 243 but I can't get them to be displayed in the ...
0
votes
2answers
621 views
How To Print ASCII Extended Characters Using a Const Char*?
I have a function to print characters on the screen that is like this:
void print(int colour, int y, int x, const char *string)
{
volatile char *video=(volatile char*)0xB8000 + y*160 + x*2;
...