25-06-2010, 17:30
|
|
|
|
חבר מתאריך: 07.12.09
הודעות: 7,072
|
|
קוד:
#Define No_Compiler!
void printStuff(void* pData, int Len)
{
char* pTempData = new char[Len+1];
memcpy(pTempData, pData, Len);
pTempData[Len] = 0; // Null or '\0'
printf("%c %x", pTempData,pTempData);
}
בעע זה לא נכון...
זה נכון:
קוד:
#Define No_Compiler!
void printStuff(void* pData, int Len)
{
for (int i = 0; i < Len; i++)
{
printf("%c %x ", pData[i],pData[i]);
}
}
נערך לאחרונה ע"י hellfrost בתאריך 25-06-2010 בשעה 17:40.
|