Tagged Questions

0
votes
4answers
198 views

What is the difference between memset and memcpy in C

I've read the function headers, but I'm still not sure what exactly the difference is in terms of use cases. Thanks!
2
votes
3answers
169 views

memset not filling array

u32 iterations = 5; u32* ecx = (u32*)malloc(sizeof(u32) * iterations); memset(ecx, 0xBAADF00D, sizeof(u32) * iterations); printf("%.8X\n", ecx[0]); ecx[0] = 0xBAADF00D; pri …
0
votes
1answer
64 views

Windows Magnification API, .NET and matrices.

I'm trying to create a magnifier app in .net using the Windows Magnification API. I've pretty much got everything working except for actually setting the magnification level (whic …
1
vote
4answers
453 views

char array vs. char pointer

Hey, When receiving data through a socket using recv, I've noticed that, with: char buffer[4]; memset(buffer, 0, 4); recv(socket, buffer, 4, 0); I receive mesgx�� "mesg" …
2
votes
5answers
811 views

C: Using memset function

This is the code that I want to try to write: #include <stdio.h> #include <math.h> #include <stdlib.h> #include <string.h> #include <malloc.h> int m …
5
votes
7answers
678 views

C memset seems to not write to every member

I wrote a small coordinate class to handle both int and float coordinates. template <class T> class vector2 { public: vector2() { memset(this, 0, sizeof(this)); } T …
1
vote
4answers
460 views

When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either?

Whenever I look at real code or example socket code in books, man pages and websites, I almost always see something like: struct sockaddr_in foo; memset(&foo, 0, sizeof foo); …
0
votes
3answers
259 views

unistd.h read() is reading more data then being written

I'm reading/writing data off of a named pipe. On the writing side it says that it's writing a constant 110 bytes. On the Reading side for the majority of time it says that it's rea …
0
votes
4answers
269 views

memset and SIGSEGV

I have been facing a weird issue in a piece of code. void app_ErrDesc(char *ps_logbuf, char *pc_buf_err_recno) { char *pc_logbuf_in; char rec_num[10]; char *y = "|"; …
1
vote
2answers
3k views

initialize two dimensional array of pointer elements using memset

Hi, I have a these structures definitions typedef struct my_s { int x; int y; } my_T; typedef struct your_s { my_T * x; } your_T; your_T array[MAX_COL][MAX_ROW]; To …
1
vote
9answers
1k views

how to set pointer to a memory to NULL using memset?

Hi, I have a structure typedef struct my_s { int x; ... } my_T; my_t * p_my_t; I want to set the address of p_my_t to NULL, tried: memset (&p_my_t, 0, sizeof(my_t* …
0
votes
4answers
476 views

How do you memset() with 16-bit values instead of bytes? [closed]

I need to copy a 16-bit value to all the elements in an array. memset() won't work because it seems to only copy bytes. (I'm not just copying zeros.) Is there a better way to do th …