About 50 results
Open links in new tab
  1. Difference between size and length methods? - Stack Overflow

    Nov 25, 2013 · What is the difference between .size() and .length ? Is .size() only for arraylists and .length only for arrays?

  2. int - What is size_t in C? - Stack Overflow

    In this case, depending upon what your use case is, you might be better off using int (or long long) for s1 and s2. There are some functions in C/POSIX that could/should use size_t, but don't …

  3. What does the C++ standard say about the size of int, long?

    If the size of the int is that important one can use int16_t, int32_t and int64_t (need the iostream include for that if I remember correctly). What's nice about this that int64_t should not have …

  4. How can I get the size of a MySQL database? - Stack Overflow

    The file size does not reflect the real database size. In fact, after deleting entries from a table, the file is not shrunk; instead, it contains unallocated space that the engine will reuse by the next …

  5. What's the difference between size_t and int in C++?

    In several C++ examples I see a use of the type size_t where I would have used a simple int. What's the difference, and why size_t should be better?

  6. javascript - Array.size () vs Array.length - Stack Overflow

    May 25, 2017 · The OP was asking 'Array.size () vs Array.length'. From the previous discussions, it was make clear, that the 'size' Function is not part of standard JavaScript but implemented …

  7. c++ - What is the size of a pointer? - Stack Overflow

    Closed 3 years ago. Is the size of a pointer the same as the size as the type it's pointing to, or do pointers always have a fixed size? For example...

  8. 16KB memory page size for Flutter Android and ndkVersion …

    Jul 15, 2025 · The second thing I've ensured is that the alignment of ELF segments support 16KB memory page size. I used the llvm-objdump-18 command in my Ubuntu linux machine and ran …

  9. linux command to get size of files and directories present in a ...

    How can I see the size of files and directories in Linux? If use df -m, then it shows the size of all the directory at the top level, but, for the directories and files inside the directory, how do I

  10. How do I calculate tables size in Oracle - Stack Overflow

    Nov 5, 2008 · Being used to (and potentially spoiled by) MSSQL, I'm wondering how I can get at tables size in Oracle 10g. I have googled it so I'm now aware that I may not have as easy an …