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

    It returns a reference to an int. References are similar to pointers but with some important distinctions. I'd recommend you read up on the differences between pointers, references, …

  2. Integer (computer science) - Wikipedia

    Standard integer The standard integer size is platform-dependent. In C, it is denoted by int and required to be at least 16 bits. Windows and Unix systems have 32-bit int s on both 32-bit and …

  3. int keyword in C - GeeksforGeeks

    Jul 11, 2025 · In the C programming language, the keyword ‘int’ is used in a type declaration to give a variable an integer type. However, the fact that the type represents integers does not …

  4. Integral numeric types | Microsoft Learn

    Jan 20, 2026 · If the compiler determines the type of an integer literal as int and the value represented by the literal is within the range of the destination type, the value can be implicitly …

  5. C int Keyword - W3Schools

    The int keyword is a data type which stores whole numbers. Most implementations will give the int type 32 (4 bytes) bits, but some only give it 16 bits (2 bytes).

  6. C Integer Types

    C uses the int keyword to represent the integer type. The following declares a variable with the integer type: int age = 1; Code language: C++ (cpp) C uses a fixed number of bits (a sequence …

  7. What Does Int Mean in C, C++ and C#? - ThoughtCo

    Jan 7, 2019 · Int is a data type used for storing whole numbers in C, C++, and C# programming languages. Int variables can hold whole numbers both positive and negative but cannot store …

  8. Fundamental types - cppreference.com

    Feb 5, 2025 · The keyword int may be omitted if any of the modifiers listed below are used. If no length modifiers are present, it's guaranteed to have a width of at least 16 bits.

  9. C data types - Wikipedia

    The type int should be the integer type that the target processor is most efficiently working with. This allows great flexibility: for example, all types can be 64-bit.

  10. Difference between the int * i and int** i - Stack Overflow

    Sep 25, 2010 · That second memory address, then, is expected to hold an int. Do note that, while you are declaring a pointer to an int, the actual int is not allocated. So it is valid to say int *i = …