Thread: font size and ASCII code

  1. #1
    Registered User
    Join Date
    Jul 2002
    Posts
    13

    font size and ASCII code

    Is it possible to make the font size bigger in C?
    What is the ASCII code for delete, enter and escape, backspace?

  2. #2
    It's full of stars adrianxw's Avatar
    Join Date
    Aug 2001
    Posts
    4,829
    >>> Is it possible to make the font size bigger in C?

    Depends. On what? (Screen - Window/Console Prnter - Type Other - help us out here)

    Enter depends on the system, it could be just CR which is 0x0D, or it may be the combination CR/LF which would be 0x0D followed by 0x0A.

    Escape is 0x1B.

    Backspace is 0x08.

    Delete is also a little awkward since there are more than 1 delete keys/methods, so, depends.
    Wave upon wave of demented avengers march cheerfully out of obscurity unto the dream.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Code review
    By Elysia in forum C++ Programming
    Replies: 71
    Last Post: 05-13-2008, 09:42 PM
  2. Sigmaze! -- Second Attempt.
    By quzah in forum Contests Board
    Replies: 42
    Last Post: 11-09-2004, 06:45 PM
  3. printing text
    By Benzakhar in forum A Brief History of Cprogramming.com
    Replies: 5
    Last Post: 03-27-2004, 08:45 AM
  4. Font size n ASCII code
    By kewell in forum C Programming
    Replies: 4
    Last Post: 07-15-2002, 09:25 AM
  5. Results for the Encryption Contest -- June 23, 2002
    By ygfperson in forum A Brief History of Cprogramming.com
    Replies: 18
    Last Post: 07-07-2002, 08:04 AM