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 …

  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 …

  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 …

  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 …

  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 …

  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 …

  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 …

  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 …