Thread: ascii code

  1. #1
    Unregistered
    Guest

    ascii code

    what is "enter" in ascii?

  2. #2
    Sayeh
    Guest

    ASCII

    ASCII-- American Standardized Code for Information Interchange.

    Normally, an enter can be considered a combination of two ASCII characters-- The LineFeed and the Carriage Return. As I recall, a linefeed is a 0x0A (10) (aka Control-J), and the Carriage return is 0x0D (13) (aka Control-M).

    \n is a "newline" character (Control-J)
    \r is a "carriage return" character (Control-M).

    I posted a program here 4 months ago that you could run that would print out all the visible equivalents for the ASCII character set in a little table you could print out.

    enjoy.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Enforcing Machine Code Restrictions?
    By SMurf in forum Tech Board
    Replies: 21
    Last Post: 03-30-2009, 07:34 AM
  2. Lame null append cause buffer to crash
    By cmoo in forum C Programming
    Replies: 8
    Last Post: 12-29-2008, 03:27 AM
  3. ASCII code goes into minus
    By Degenko in forum C Programming
    Replies: 4
    Last Post: 05-26-2007, 12:35 PM
  4. Office access in C/C++ NOT VC++!! :)
    By skawky in forum C++ Programming
    Replies: 1
    Last Post: 05-26-2005, 01:43 PM
  5. covert ascii code to character
    By Shadow in forum C Programming
    Replies: 2
    Last Post: 04-25-2002, 09:53 PM