Thread: Weird chars

  1. #1
    Registered User got matt?'s Avatar
    Join Date
    Mar 2002
    Posts
    16

    Weird chars

    Hey ummm I used to have this code for making weird text. Now that I can make some pretty cool console stuff I need a better looking char. I searched for a while but realy didn't find what I was looking for.
    -Thanks
    "If there is a will, there is a way."

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    I'm not exactly sure what you want to do, but you can find any character you want by looping through the character set.

    -Prelude
    My best code is written with the delete key.

  3. #3
    Kiss the monkey. CodeMonkey's Avatar
    Join Date
    Sep 2001
    Posts
    937
    //PRINTS OUT ALL OF THE ASCII CHARS

    for(int x = 0; x < 255; x++)
    {
    cout<<""<<x<<". "<<(char)x<<" ";
    }
    "If you tell the truth, you don't have to remember anything"
    -Mark Twain

  4. #4
    Registered User got matt?'s Avatar
    Join Date
    Mar 2002
    Posts
    16
    Oh good. Thankx alot man.
    "If there is a will, there is a way."

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. while condition question..
    By transgalactic2 in forum C Programming
    Replies: 3
    Last Post: 04-04-2009, 04:49 PM
  2. Counting how many chars in a string
    By tigs in forum C Programming
    Replies: 4
    Last Post: 08-05-2002, 12:25 AM
  3. really got stuck with unsigned chars
    By Abdi in forum C Programming
    Replies: 7
    Last Post: 06-11-2002, 12:47 PM
  4. move chars position
    By SpuRky in forum C Programming
    Replies: 3
    Last Post: 06-09-2002, 02:59 AM
  5. fancy strcpy
    By heat511 in forum C++ Programming
    Replies: 34
    Last Post: 05-01-2002, 04:29 PM