Thread: ascii

  1. #1
    Registered User
    Join Date
    Oct 2002
    Posts
    51

    ascii

    why not post answers to people who will have future questions.... sorry im bored


    Code:
    #include <iostream>
    using namespace std;
    
    int arraybox[40][40];
    
    int main()
    {
    for( int i = 0; i < 40; i ++){
    cout<<endl;
    for( int l = 0; l< 40; l ++){
    cout<<static_cast<char>(arraybox[i][l] = 177);
    }
    }
    return 0;
    }
    this prints a box

  2. #2
    Banned master5001's Avatar
    Join Date
    Aug 2001
    Location
    Visalia, CA, USA
    Posts
    3,685

    Re: ascii

    Originally posted by tetraflare
    why not post answers to people who will have future questions....
    Because usually people don't search the boards (or the web, or even the book sitting next to their computer) before posting a question.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. ASCII character with ASCII value 0 and 32
    By hitesh_best in forum C Programming
    Replies: 4
    Last Post: 07-24-2007, 09:45 AM
  2. Replies: 11
    Last Post: 03-24-2006, 11:26 AM
  3. Office access in C/C++ NOT VC++!! :)
    By skawky in forum C++ Programming
    Replies: 1
    Last Post: 05-26-2005, 01:43 PM
  4. ascii values for keys
    By acid45 in forum C Programming
    Replies: 2
    Last Post: 05-12-2003, 07:13 AM
  5. Checking ascii values of char input
    By yank in forum C Programming
    Replies: 2
    Last Post: 04-29-2003, 07:49 AM