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

    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, short, and long. The following table lists …

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

  3. C Language: Integer Variables - TechOnTheNet

    C Language: Integer Variables This C tutorial explains how to declare and use integer variables with syntax and examples.

  4. int keyword in C - GeeksforGeeks

    Jun 11, 2026 · The int keyword in C is used to declare integer variables that store whole numbers without decimal values. It is one of the most commonly used data types in C programming. int stands …

  5. C int Keyword - W3Schools

    Definition and Usage 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). With 16 bits it can store …

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

    short int type: as the declaration of the type when combined with short unsigned short int type: as the declaration of the type when combined with unsigned and short int type: as the declaration of the …

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

  8. C Data Types - Programiz

    Data types are declarations for variables. This determines the type and size of data associated with variables. In this tutorial, you will learn about basic data types such as int, float, char, etc. in C …

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

    C int Data Type 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 …

  10. C Integer Types

    C uses the int keyword to represent integer type. The size of the integers depends on the platform where the program runs. The limits.h has the INT_MIN and INT_MAX that specify the minimum and …