About 4,300,000 results
Open links in new tab
  1. C data types - Wikipedia

    Primary types Main types The C language provides the four basic arithmetic type specifiers char, int, float and double (as well as the boolean type bool), and the modifiers signed, unsigned, …

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

  3. 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).

  4. C int Data Type - Storage Size, Examples, Min and Max Values

    In C, the int data type is a primary data type used to store integer values. It is one of the most commonly used types for numeric computations and can store both positive and negative …

  5. 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 …

  6. C keywords: int - cppreference.com

    Nov 2, 2012 · Usage int type: as the declaration of the type Retrieved from " https://en.cppreference.com/mwiki/index.php?title=c/keyword/int&oldid=44088 "

  7. Data types — NumPy v2.4 Manual

    Numerical Data Types # There are 5 basic numerical types representing booleans (bool), integers (int), unsigned integers (uint) floating point (float) and complex. A basic numerical type name …

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

    In the world of C programming, the `int` data type is one of the most fundamental and widely used. It serves as the cornerstone for handling integer values, which are essential in countless …

  9. 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 …

  10. Data Types in C - GeeksforGeeks

    Oct 18, 2025 · Integer Data Type Stores whole numbers (positive, negative, or zero). We use int keyword to declare the integer variable: Size: 4 bytes, Range: -2,147,483,648 to …