About 27,200,000 results
Open links in new tab
  1. c++ - Memset Definition and use - Stack Overflow

    memset is a common way to set a memory region to 0 regardless of the data type. One can say that memset doesn't care about the data type and just sets all bytes to zero. IMHO in C++ one should …

  2. Using memset for integer array in C - Stack Overflow

    memset(arr,-1,6*(sizeof int)); Furthermore, if you only need to do this initialization once, you can actually declare the array to start with values 1 from compile time.

  3. c - How to use malloc () and memset () - Stack Overflow

    Jul 21, 2019 · I feel this is a risky habit, however. It's very difficult to be consistent, and in some contexts the program can crash if you make a mistake. Many developers seem to recommend initializing or …

  4. memset () or value initialization to zero out a struct?

    Aug 12, 2015 · Next, memset sets the memory where the object b was located to certain value, say zero. Now, once our TestStruct object goes out of scope, it is going to be destroyed and when the …

  5. How to use memset function in two dimensional array for initialization ...

    Apr 13, 2014 · I want to know how I can use the memset() function in a two dimensional array in C. I don't want to face any garbage problems in that array. How do I initialize this array? Could someone …

  6. What is the advantage of using memset() in C - Stack Overflow

    Dec 16, 2011 · The advantage of memset is that in many platforms it is actually a compiler intrinsic; that is, the compiler can "understand" the intention to set a large swath of memory to a certain value, and …

  7. What is the difference between memset and memcpy in C

    Nov 23, 2015 · 3 memset sets a block of memory to a single value. memcpy copies the content of a block into another block. Perhaps you'd be interested in the difference between memcpy and …

  8. Is memset () more efficient than for loop in C? - Stack Overflow

    For older compilers or simple compilers, memset may be implemented in a library and would not perform better than a custom loop. For nearly all compilers that are worth using, memset is an intrinsic …

  9. c - ¿Para que sirve el memset? - Stack Overflow en español

    ¿Quieres mejorar esta pregunta? Actualiza la pregunta para que se enfoque en un problema solamente al editar esta publicación.

  10. c - memset an array to 1 - Stack Overflow

    16 memset set every byte of your array to 1 not every int element. Use an initializer list with all values set to 1 or a loop statement to copy a value of 1 to all the elements.