About 119,000 results
Open links in new tab
  1. INITIALIZE Definition & Meaning - Merriam-Webster

    The meaning of INITIALIZE is to set (something, such as a computer program counter) to a starting position, value, or configuration.

  2. Initialization (programming) - Wikipedia

    In computer programming, initialization or initialisation is the assignment of an initial value for a data object or variable. The manner in which initialization is performed depends on the programming …

  3. Initialization - cppreference.com

    Dec 31, 2024 · Initialization of a variable provides its initial value at the time of construction. The initial value may be provided in the initializer section of a declarator or a new expression. It also takes …

  4. c++ - What does 'initialization' exactly mean? - Stack Overflow

    Nov 11, 2019 · Each programming has its own way of doing these three things.The “thing” which you are defining, declaring or initializing also affects the difference between the three of them.

  5. INITIALIZE | English meaning - Cambridge Dictionary

    INITIALIZE definition: 1. to set the numbers, amounts, etc. in a computer program so that it is ready to start working 2…. Learn more.

  6. Initialize - definition of initialize by The Free Dictionary

    1. to set (variables, counters, switches, etc.) to their starting values at the beginning of a computer program or subprogram. 2. to prepare (a computer, printer, etc.) for reuse by clearing previous data …

  7. INITIALIZE definition and meaning | Collins English Dictionary

    You may also like initialize in American English (ɪˈnɪʃəlˌaɪz ) verb transitive Word forms: initialized, initializing computing to prepare for use by renewing the settings, clearing memory, etc.

  8. Why is initializing so important in coding? – California Learning ...

    Jul 2, 2025 · At its essence, initialization refers to the process of assigning an initial value to a variable, data structure, or object upon its creation or declaration. This process allocates memory for the entity …

  9. Initialize Definition & Meaning | YourDictionary

    Initialize definition: To set (a starting value of a variable).

  10. Different Ways to Initialize a Variable in C++ - GeeksforGeeks

    Jul 11, 2025 · Additionally, a data type is used to declare and initialize a variable. Suppose we want to save our marks in memory. Now, these marks will get saved at a particular address in the memory. …