约 254,000 个结果
在新选项卡中打开链接
  1. 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.

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

  3. C Integer Types

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

  4. C Language: Integer Variables - TechOnTheNet

    To declare an integer variable with a type other than int, simply replace the int keyword in the syntax above with your selected type. For example: Let's look at an example of how to declare an integer …

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

  6. C Data Types - W3Schools

    Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.

  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 whole numbers.