Home > Back-end >  To assign values to the array of data in memory
To assign values to the array of data in memory

Time:01-22

The starting address 0 xaaaaaa
BYTE data [1024]
Such as:
0 xaaaaaa as the starting address of the data in the form of binary sequence assign values to the data array

CodePudding user response:

What you mean? Memory can't copy?
Memcpy (data, 0 xaaaaaa, sizeof (data));
  • Related