约 5,340,000 个结果
在新选项卡中打开链接
  1. 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). With 16 bits it can store positive …

  2. int keyword in C - GeeksforGeeks

    2025年7月11日 · 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 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.

  4. Type int | Microsoft Learn

    2021年8月3日 · 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 …

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

  6. Basic Integers (GNU C Language Manual)

    Supported in GNU C in the 1980s, and incorporated into standard C as of ISO C99. You can omit int when you use long or short. This is harmless and customary.

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

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

  9. C keywords: int - cppreference.com

    2012年11月2日 · Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/keyword/int&oldid=44088"

  10. Integer Data TypeProgramming Fundamentals

    Integral data types may be of different sizes and may or may not be allowed to contain negative values. Integers are commonly represented in a computer as a group of binary digits (bits). …