May 20, 2005 #1 H Help Advanced Member level 2 Joined Feb 15, 2005 Messages 617 Helped 7 Reputation 14 Reaction score 3 Trophy points 1,298 Activity points 7,065 Hi, Do you know how to use the ASCII, eg. NUL, SOH, STX, ETX, EOT, ENQ, SO, SI, .... and so on (20h-7Eh i will know how to use, it is easy)? Do you have any webside teach you how to use the code? Thany you..
Hi, Do you know how to use the ASCII, eg. NUL, SOH, STX, ETX, EOT, ENQ, SO, SI, .... and so on (20h-7Eh i will know how to use, it is easy)? Do you have any webside teach you how to use the code? Thany you..
May 20, 2005 #2 I IanP Advanced Member level 7 Joined Oct 5, 2004 Messages 7,929 Helped 2,311 Reputation 4,624 Reaction score 531 Trophy points 1,393 Location West Coast Activity points 66,416 Re: ASCII Here is a link to ASCII codes (including extended codes) with explanation of their meaning: https://www.lookuptables.com/ Regards, IanP
Re: ASCII Here is a link to ASCII codes (including extended codes) with explanation of their meaning: https://www.lookuptables.com/ Regards, IanP
May 21, 2005 #3 H Help Advanced Member level 2 Joined Feb 15, 2005 Messages 617 Helped 7 Reputation 14 Reaction score 3 Trophy points 1,298 Activity points 7,065 Re: ASCII Hi, The webside just given the table but didn't teach us how to use it.... Is there any webside teach you how to use the code in C? Thanks...
Re: ASCII Hi, The webside just given the table but didn't teach us how to use it.... Is there any webside teach you how to use the code in C? Thanks...
May 21, 2005 #4 picotube Member level 5 Joined Sep 24, 2004 Messages 84 Helped 6 Reputation 12 Reaction score 0 Trophy points 1,286 Activity points 781 ASCII Code: #include <stdio.h> void main() { int ascii_char; ascii_char = 65; // %c is used to print out the character represented by the ascii code printf("The ascii code of %c is 65.", ascii_char); }
ASCII Code: #include <stdio.h> void main() { int ascii_char; ascii_char = 65; // %c is used to print out the character represented by the ascii code printf("The ascii code of %c is 65.", ascii_char); }
May 21, 2005 #5 H Help Advanced Member level 2 Joined Feb 15, 2005 Messages 617 Helped 7 Reputation 14 Reaction score 3 Trophy points 1,298 Activity points 7,065 Re: ASCII Hi, How about NUL, SOH, STX, ETX, EOT, ENQ, SO, SI, .... and so on ?? Thanks for your program....
Re: ASCII Hi, How about NUL, SOH, STX, ETX, EOT, ENQ, SO, SI, .... and so on ?? Thanks for your program....