About 16,600 results
Open links in new tab
  1. Enumeration (or enum) in C - GeeksforGeeks

    Jul 29, 2025 · In C, an enumeration (or enum) is a user defined data type that contains a set of named integer constants. It is used to assign meaningful names to integer values, which makes a program …

  2. Enumeration - Wikipedia

    In computability theory one often considers countable enumerations with the added requirement that the mapping from (set of all natural numbers) to the enumerated set must be computable.

  3. Enumeration types - C# reference | Microsoft Learn

    Jan 14, 2026 · An enumeration type (or enum type) is a value type defined by a set of named constants of the underlying integral numeric type. To define an enumeration type, use the enum keyword and …

  4. ENUMERATION Definition & Meaning - Merriam-Webster

    enumeration noun enu· mer· a· tion i-ˌn (y)ü-mə-ˈrā-shən plural enumerations Synonyms of enumeration 1 : the act or process of making or stating a list of things one after another

  5. Enumerations - cppreference.com

    May 16, 2024 · Enumerations permit the declaration of named constants in a more convenient and structured fashion than does #define; they are visible in the debugger, obey scope rules, and …

  6. enum — Support for enumerationsPython 3.14.3 documentation

    2 days ago · @enum.property ¶ A decorator similar to the built-in property, but specifically for enumerations. It allows member attributes to have the same names as members themselves.

  7. ENUMERATION Definition & Meaning | Dictionary.com

    ENUMERATION definition: an act of enumerating. See examples of enumeration used in a sentence.

  8. C Enum (Enumeration) - W3Schools

    Enum is short for "enumerations", which means "specifically listed". To access the enum, you must create a variable of it. Inside the main() method, specify the enum keyword, followed by the name of …

  9. Enumerations - MATLAB & Simulink - MathWorks

    Use enumerations to represent a fixed set of named values, where all the values are of the same kind. You can derive enumeration classes from other classes, such as built-in numeric types.

  10. Enumerations - Scala Documentation

    An enumeration is used to define a type consisting of a set of named values.