CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2002
    Posts
    72

    A question about "size_t"

    Hi, everyone!

    I have searched the help page for "size_t" but failed
    to find the help page and information about "size_t".

    Where can I find the help page or information about
    "size_t"? Can you paste detailed information about
    "size_t".

    Thanks.

    Cheers,
    George

  2. #2
    Join Date
    Jun 2002
    Location
    Germany
    Posts
    1,557

    basic type

    Hello George,

    size_t is a basic type defined in standard C. It is typedef'ed as unsigned int and it's size is thus dependent on the compiler implementation. The result of the sizeof() operator is size_t. The typedef for size_t can be found in stddef.h or possibly some other header.

    Chris.

    You're gonna go blind staring into that box all day.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured