Thread: ascii codes!!

  1. #16
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    >BTW, what compilers do people generally use?

    Mainly GCC.

    >And, can u suggest me a good site that hosts the ANSI coding
    >standards for C.

    The ANSI C standard isn't freely available, you have to buy it from them. Though there are references online, use Google and search for example for "ansi c c99".

  2. #17
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >what compilers do people generally use?
    I mainly use MSVC++ 6, but I also use Borland C++ on occasion.

    >can u suggest me a good site that hosts the ANSI coding standards for C
    The ISO standard can be purchased for about $130 from ww.ansi.org. If you look really hard you can find it illegally on the net, but I don't recommend that. For a little quick reference, here is a link to the C Rationale. Be sure to take note of the warnings because this is NOT a replacement for the full standard.
    http://www.lysator.liu.se/c/rat/title.html

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

  3. #18
    Registered User
    Join Date
    Dec 2001
    Posts
    44
    Originally posted by Prelude
    >what compilers do people generally use?
    I mainly use MSVC++ 6, but I also use Borland C++ on occasion.

    >can u suggest me a good site that hosts the ANSI coding standards for C
    The ISO standard can be purchased for about $130 from ww.ansi.org.

    -Prelude
    That's true if you want the paper version. The digital (PDF) version is available from the ANSI Electronic Standards Store for a meagre $18...

    http://webstore.ansi.org/ansidocstor...EC+9899%2D1999

    There is also a draft around... n869.txt or similar which is freely available (somewhere). There are some differences in wording but IIRC nothing significant has changed between the draft and the standard.

  4. #19
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661

  5. #20
    Registered User
    Join Date
    Feb 2002
    Posts
    589
    Does any one know if the C++ standard is available for download

  6. #21
    Comment your source code! Lynux-Penguin's Avatar
    Join Date
    Apr 2002
    Posts
    533
    C++ Standard?
    I dont even think the C standard is Free...
    if you mean compiler then sure, there are a lot that are free.

    Check with ANSI
    but C++ belongs to MS so if you want their standards try
    http://msdn.microsoft.com/

    some C standards I have on my C Refrence Card
    Asking the right question is sometimes more important than knowing the answer.
    Please read the FAQ
    C Reference Card (A MUST!)
    Pointers and Memory
    The Essentials
    CString lib

  7. #22
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    As far as I know, also the C++ standard is not free available for download.

    >but C++ belongs to MS

    That is incorrect, C++ is not owned by MS. Neither is C owned by a company.

  8. #23
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661
    >but C++ belongs to MS
    But C# does belong to M$

  9. #24
    Registered User
    Join Date
    Dec 2001
    Posts
    44
    Originally posted by Lynux-Penguin
    some C standards I have on my C Refrence Card
    Shame that there are a few errors in the C reference card. Not bad, but a few elementary mistakes. (Case in point: C does not define the sizes of integer types as exact numbers of bits as is stated/implied on the card).

    Useful, but be wary. The Standard Is Always Right (TM).

    Ian Woods

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Question about ASCII codes
    By rwmarsh in forum C++ Programming
    Replies: 4
    Last Post: 04-17-2006, 10:49 AM
  2. ASCII Codes
    By X PaYnE X in forum Windows Programming
    Replies: 1
    Last Post: 12-31-2003, 01:37 PM
  3. Getting ASCII codes
    By moonwalker in forum C Programming
    Replies: 3
    Last Post: 07-24-2002, 01:17 PM
  4. ASCII Codes
    By drdroid in forum C++ Programming
    Replies: 11
    Last Post: 05-02-2002, 04:00 PM
  5. converting scan codes to ascii codes
    By stupid_mutt in forum C Programming
    Replies: 11
    Last Post: 01-25-2002, 04:06 PM