About 150,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, objects and primitive …

  2. 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.

  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 mean it can …

  4. C++ keyword:int - cppreference.com

    Sep 1, 2024 · Fundamental types: void, std::nullptr_t (since C++11). Integral types: int. Modifiers: signed, unsigned, short, long. Boolean type: bool. Boolean literals: false, true. Character types: char, …

  5. Integral Calculator - Mathway

    The integral calculator allows you to enter your problem and complete the integration to see the result. You can also get a better visual and understanding of the function and area under the curve using …

  6. C++ int Keyword - W3Schools

    The int keyword is a data type that is usually 32 bits long which stores whole numbers. Most implementations will give the int type 32 bits, but some only give it 16 bits.

  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. C Integer Types

    Integers are whole numbers, including negative, 0, and positive. C uses the int keyword to represent integer type.

  9. Type int | Microsoft Learn

    Aug 3, 2021 · The int types all represent signed values unless specified otherwise. The type specifiers int and unsigned int (or simply unsigned) define certain features of the C language (for instance, the …

  10. Demystifying C `int`: A Comprehensive Guide - CodeRivers

    An int in C is a data type used to store integer values. It is a fundamental data type that can represent whole numbers, both positive and negative (in the case of signed int).