About 12,200,000 results
Open links in new tab
  1. How to initialize a struct in accordance with C programming language ...

    Is this the way to declare and initialize a local variable of MY_TYPE in accordance with C programming language standards (C89, C90, C99, C11, etc.)? Or is there anything better or at least working?

  2. How to directly initialize a HashMap (in a literal way)?

    How to directly initialize a HashMap (in a literal way)? Asked 14 years, 3 months ago Modified 4 months ago Viewed 2.1m times

  3. How can I initialize all members of an array to the same value?

    How would you use memset to initialize a int array to some value larger than 255? memset only works if the array is byte sized.

  4. How to initialize a struct in C# - Stack Overflow

    Oct 15, 2010 · How to initialize a struct in C# [duplicate] Asked 15 years ago Modified 15 years ago Viewed 49k times

  5. How to initialize an object using async-await pattern

    How to initialize an object using async-await pattern Asked 12 years, 6 months ago Modified 3 years, 5 months ago Viewed 40k times

  6. How to initialize array to 0 in C? - Stack Overflow

    {0}; works fine, C99 [$6.7.8/21] If there are fewer initializers in a brace-enclosed list than there are elements or members of an aggregate, or fewer characters in a string literal used to initialize an array …

  7. Proper way to initialize C++ structs - Stack Overflow

    Jan 21, 2017 · The new syntax with () should value-initialize the object, assuming it is POD. Is it possible that some subpart of your struct isn't actually POD and that's preventing the expected initialization? …

  8. What is the difference between "instantiated" and "initialized"?

    Feb 25, 2010 · To initialize means assigning an initial state to the object before it is used. This initialization can be part of the instantiation process, in that case values are explicitly assigned to …

  9. Declare and Initialize String Array in VBA - Stack Overflow

    Oct 14, 2013 · 179 In the specific case of a String array you could initialize the array using the Split Function as it returns a String array rather than a Variant array: Dim arrWsNames() As String …

  10. Java: define terms initialization, declaration and assignment

    I find the defs circular, the subjects are defined by their verbs but the verbs are undefined! So how do you define them? The Circular Definitions initialization: to initialize a variable. It can...