-
size_t
Hi,
Im ashamed to ask, but could anyone inform me of what the size_t type is
and where I can find information concerning C/C++ libraries. I constantly
read articles telling me to use specific functions for specific purposes,
but where does their information come from?
Thanks,
Craig.
-
Re: size_t
size_t is a typedef that represent a datatype suitable for storing the
size of objects in bytes, on the target platform. On most 32-bit systems
it's underlying type is unsigned int.
You can find information on the Standard Library in books, online search
engines (simply type the name of the function on google) or by hitting
F1, if you're compiler offers online help.
Danny
Craig wrote:
>
> Hi,
>
> Im ashamed to ask, but could anyone inform me of what the size_t type is
> and where I can find information concerning C/C++ libraries. I constantly
> read articles telling me to use specific functions for specific purposes,
> but where does their information come from?
>
> Thanks,
>
> Craig.
-
Re: size_t
Danny,
Thanks for this information. Much appreciated.
Regards,
Craig.
Danny Kalev <dannykk@inter.net.il> wrote:
>size_t is a typedef that represent a datatype suitable for storing the
>size of objects in bytes, on the target platform. On most 32-bit systems
>it's underlying type is unsigned int.
>You can find information on the Standard Library in books, online search
>engines (simply type the name of the function on google) or by hitting
>F1, if you're compiler offers online help.
>
>Danny
>
>Craig wrote:
>>
>> Hi,
>>
>> Im ashamed to ask, but could anyone inform me of what the size_t type
is
>> and where I can find information concerning C/C++ libraries. I constantly
>> read articles telling me to use specific functions for specific purposes,
>> but where does their information come from?
>>
>> Thanks,
>>
>> Craig.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks