I saw a lot of usage of memcpy(var1, var2, size) in a commercial code. Is that a win32 function? How can I find the definition of it? How to use it? In the commercial code, it is used to copy and...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20141401.html
Zones:
C++Date Answered: 06/25/2001 Rating: 9.4 Views: 0
Hi,
I am not an C/C++ expert, but would like to fix some issue in one program.
What happenes is that program terminates (including with "Send to MS" message).
Going up and down the code everyt...
http://www.experts-exchange.com/Programming/Languages/C/Q_22004168.html
Zones:
CDate Answered: 10/22/2006 Rating: 7.6 Views: 0
Hello,
Can anyone please explain in simple terms what the following function does, so I can try to find a VB.Net equivalent ?
Thank you.
void set_name(unsigned char *nm, struct prs *prs) ...
http://www.experts-exchange.com/Programming/Languages/C/Q_22047270.html
Zones:
CDate Answered: 11/02/2006 Rating: 7.6 Views: 0
Is There any thing similar to memcpy(c language) in c#
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_22108104.html
Zones:
C#Date Answered: 02/11/2007 Rating: 8.0 Views: 0
baseClass1
baseClass2
baseClass3
derivedClass1 : baseClass1, baseClass2
derivedClass2 : baseClass1, baseClass3
baseClass *p[count]
baseClass *t[count+1]
im trying to dynamically crea...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20009963.html
Zones:
C++Date Answered: 02/25/2001 Rating: 7.6 Views: 0
In a 16-bit Windows app, I have allocated a gloabl memory block of 90000 bytes (array of 300 elements of 300 bytes each).
The memory is allocated OK, but when I try to memcpy something into element...
http://www.experts-exchange.com/Programming/Languages/C/Q_10121056.html
Zones:
CDate Answered: 01/29/1999 Rating: 6.0 Views: 0
What is the difference between memcpy and memmove? Online help says about memmove that "memmove ensures that the original source bytes in the overlapping region are copied before being overwritten....
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10152084.html
Zones:
C++Date Answered: 04/19/1999 Rating: 7.4 Views: 12
i need to do an efficient memory copy (memcpy) with two arrays.
for example:
dim a() as byte, b() as byte
redim a(500)
redim b(10000)
' i need to copy b(1000 to 1501) into a.
' how do i do that ?...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10195980.html
Zones:
Visual BasicDate Answered: 01/10/2000 Rating: 7.0 Views: 5
Hi experts,
Can anyone tell me how these functions are actually used? The only place I actually saw these functions is at the back of K&R, which doesn't really go into detail. A code snippet wou...
http://www.experts-exchange.com/Programming/Languages/C/Q_20112095.html
Zones:
CDate Answered: 03/19/2002 Rating: 5.4 Views: 0
how to copy the content of a huge byte() (byte array) to another, as we can do in c using memcpy() ?
to be more specific, for example,
byte[] ba1;
byte[] ba2 = new byte[100];
ba1 = new Str...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20185689.html
Zones:
JavaDate Answered: 09/20/2001 Rating: 8.2 Views: 127