Thread: typedef meaning what?

  1. #1
    Disturbed Boy gustavosserra's Avatar
    Join Date
    Apr 2003
    Posts
    244

    typedef meaning what?

    Hi all! What does it means:
    Code:
    typedef int user_request[BUFFER_SIZE];
    Is it an array of integers??? If not, how can I typedef an array of integers? It can't be dynamic, and the code is not my, so I can't do it by another way. Thanks any help and the time
    Nothing more to tell about me...
    Happy day =)

  2. #2
    Registered User
    Join Date
    Jul 2003
    Posts
    59
    Yes it is an array of integers.

    Writing: user_request var;

    will be equal to: int var[BUFFER_SIZE];

  3. #3
    Registered User
    Join Date
    Nov 2001
    Posts
    1,348
    alias

    Kuphryn

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Getting an error with OpenGL: collect2: ld returned 1 exit status
    By Lorgon Jortle in forum C++ Programming
    Replies: 6
    Last Post: 05-08-2009, 08:18 PM
  2. Need help understanding info in a header file
    By hicpics in forum C Programming
    Replies: 8
    Last Post: 12-02-2005, 12:36 PM
  3. Please STICKY this- vital to MSVC 6 dev - BASETSD.h
    By VirtualAce in forum Game Programming
    Replies: 11
    Last Post: 03-15-2005, 09:22 AM
  4. build errors migrated from dx9b to dx9c sdk
    By reanimated in forum Game Programming
    Replies: 4
    Last Post: 12-17-2004, 07:35 AM
  5. oh me oh my hash maps up the wazoo
    By DarkDays in forum C++ Programming
    Replies: 5
    Last Post: 11-30-2001, 12:54 PM