Thread: Naming variable types

  1. #1
    Registered User
    Join Date
    Nov 2002
    Posts
    41

    Naming variable types

    what are the variable types? i mean all the usefull ones like int and stuff thanx
    In order of learned:
    HTML - Mastered
    CSS - Enough to use
    SSI - Mastered
    PHP - Advanced
    C/C++ - Current Project

  2. #2
    Evil Member
    Join Date
    Jan 2002
    Posts
    638
    This is basic stuff...

    You might benefit more from formal training, but you can look <snip>Link removed for poor quality</snip> for a start. This covers basic variables types, but not important STL types like string and vector.

    EDIT - S'oz I don't have a ppt viewer on hand, I was just poking around...
    Last edited by Imperito; 11-01-2002 at 06:57 PM.

  3. #3
    Blank
    Join Date
    Aug 2001
    Posts
    1,034
    This link is terrible. Just about *all* of
    the information is incorrect. I'm not really sure
    where the author of this got some of his information.

    what are the variable types? i mean all the usefull ones like int and stuff thanx
    A variable type is a set of values and a set of options. int and
    it's relatives are primitive types who's set of operations and
    set of values are defined by the c++ language. Though
    the set of values is really defined by the implementer of
    the compiler. c++ allows you to create your own types by
    using the class and struct keywords. int is usually implemented
    to be the word size of the computer.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. sorting number
    By Leslie in forum C Programming
    Replies: 8
    Last Post: 05-20-2009, 04:23 AM
  2. Static global variable acting as global variable?
    By Visu in forum C Programming
    Replies: 2
    Last Post: 07-20-2004, 08:46 AM
  3. Use of variable
    By alice in forum C Programming
    Replies: 8
    Last Post: 06-05-2004, 07:32 AM
  4. storing different variable types in arrays.........
    By Unregistered in forum C Programming
    Replies: 6
    Last Post: 06-28-2002, 11:45 AM
  5. Variable Allocation in a simple operating system
    By awkeller in forum C Programming
    Replies: 1
    Last Post: 12-08-2001, 02:26 PM