|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
c++.dos - what is size_t ?
What is size_t and when i can used it ? thanks for ur help. Aug 17 2003
In most compilers, 'size_t' is a type definition (typedef) specifying the kind of integer variable returned by the 'sizeof' operator. It is used because the exact type returned by 'sizeof' can vary from implementation to implementation. For portability, it's a good idea to use 'size_t' when you want a variable that represents the size of something. ../frank On Sun, 17 Aug 2003 13:53:11 +0000 (UTC), noobi <noobi_member pathlink.com> wrote:What is size_t and when i can used it ? thanks for ur help. Aug 17 2003
Thanks for help...... That was good one simple and easy to understand Apr 19 2007
|