About 4,420,000 results
Open links in new tab
  1. c++ - What does int & mean - Stack Overflow

    A C++ question, I know int* foo (void) foo will return a pointer to int type how about int &foo (void) what does it return? Thank a lot!

  2. Difference between "int" and "int (2)" data types - Stack Overflow

    Dec 29, 2022 · For INT and other numeric types that attribute only specifies the display width. See Numeric Type Attributes in the MySQL documentation: MySQL supports an extension for …

  3. What does int() do in C++? - Stack Overflow

    Jun 16, 2013 · -2 int() is the constructor of class int. It will initialise your variable a to the default value of an integer, i.e. 0. Even if you don't call the constructor explicitly, the default …

  4. Difference between int32, int, int32_t, int8 and int8_t

    Jan 25, 2013 · Plain int is quite a bit different from the others. Where int8_t and int32_t each have a specified size, int can be any size >= 16 bits. At different times, both 16 bits and 32 bits have …

  5. c# - What is the difference between “int” and “uint” / “long” and ...

    Sep 16, 2010 · The link goes to the MSDN documentation for int. If by "CLS" you mean C# language spec then I don't understand - the spec clearly describes both uint and ulong …

  6. Difference between int vs Int32 in C# - Stack Overflow

    In C#, int and Int32 appear to be the same thing, but I've read a number of times that int is preferred over Int32 with no reason given. Are the two really the same? Is there a reason …

  7. Can an int be null in Java? - Stack Overflow

    In Java, int is a primitive type and it is not considered an object. Only objects can have a null value. So the answer to your question is no, it can't be null. But it's not that simple, because …

  8. What is the maximum value for an int32? - Stack Overflow

    To get max value you actually have to calculate the sum of 2^n with n from 0 to 31 or simpler 2^32 - 1 and you'll get '4294967295' as max for unsigned int, one less than anticipated. Now do the …

  9. C/C++ int [] vs int* (pointers vs. array notation). What is the ...

    I know that arrays in C are just pointers to sequentially stored data. But what differences imply the difference in notation [] and *. I mean in ALL possible usage context. For example: char c[] =...

  10. What is the difference between int, Int16, Int32 and Int64?

    Mar 14, 2012 · int is a primitive type allowed by the C# compiler, whereas Int32 is the Framework Class Library type (available across languages that abide by CLS). In fact, int translates to …