About 284,000 results
Open links in new tab
  1. INSTITUTO NACIONAL DE TECNOLOGIA (@int.online) - Instagram

    8,554 Followers, 254 Following, 1,425 Posts - INT | INSTITUTO NACIONAL DE TECNOLOGIA (@int.online) on Instagram: "Perfil oficial do Instituto Nacional de Tecnologia Unidade de Pesquisa …

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

  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. Understanding the `int` Keyword in C — w3tutorials.net

    2 days ago · In the C programming language, the `int` keyword is one of the fundamental data types. It is used to declare variables that can store integer values. Integers are whole numbers without a …

  5. Data Types in C - GeeksforGeeks

    6 days ago · Primitive data types are the basic built-in data types in C used to store simple values like integers, characters, and floating-point numbers. Stores whole numbers (positive, negative, or zero). …

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

  7. Python int () Function - W3Schools

    Definition and Usage The int() function converts the specified value into an integer number.

  8. Integer (computer science) - Wikipedia

    Standard integer The standard integer size is platform-dependent. In C, it is denoted by int and required to be at least 16 bits. Windows and Unix systems have 32-bit int s on both 32-bit and 64-bit …

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

  10. Integral numeric types | Microsoft Learn

    Jan 20, 2026 · All integral numeric types support arithmetic, bitwise logical, comparison, and equality operators. The C# language reference documents the most recently released version of the C# …