#include #include "windows.h"using namespace std;int main(void){ char a[10]="abcd"; byte b[10]=""; memcpy(b,a,4); cout << b << endl; return 0;}