Click here to Skip to main content
15,884,962 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: help me to generate MD5 of Binary hash value. Pin
Le@rner26-Dec-13 23:45
Le@rner26-Dec-13 23:45 
GeneralRe: help me to generate MD5 of Binary hash value. Pin
Richard MacCutchan27-Dec-13 0:08
mveRichard MacCutchan27-Dec-13 0:08 
GeneralRe: help me to generate MD5 of Binary hash value. Pin
Le@rner27-Dec-13 2:03
Le@rner27-Dec-13 2:03 
GeneralRe: help me to generate MD5 of Binary hash value. Pin
Richard MacCutchan27-Dec-13 3:26
mveRichard MacCutchan27-Dec-13 3:26 
GeneralRe: help me to generate MD5 of Binary hash value. Pin
Randor 27-Dec-13 10:51
professional Randor 27-Dec-13 10:51 
GeneralRe: help me to generate MD5 of Binary hash value. Pin
Le@rner27-Dec-13 17:30
Le@rner27-Dec-13 17:30 
QuestionPointers in C/C++ Pin
tgsb26-Dec-13 20:24
tgsb26-Dec-13 20:24 
AnswerRe: Pointers in C/C++ Pin
Richard MacCutchan26-Dec-13 22:23
mveRichard MacCutchan26-Dec-13 22:23 
Pointers are the same in both versions of the language; they point to elements or objects. In reality a pointer is merely a convenient way of addressing a portion of memory. for example:
C++
char someArray[256];  // allocate an array of characters
char* pItemOfArray = someArray; // create a pointer that 'points' to the first element of the array

// do something to fill the array with data

while (*pItemOfArray != '\0') // repeat some code while the array item contains some non-zero value
{
    // do something with the item that the pointer points to, for example
    *pItemArray = *pItemArray + 1; // add 1 to the item
    pItemArray++;  // update the pointer to point to the next item
} // and continue the loop

Veni, vidi, abiit domum

AnswerRe: Pointers in C/C++ Pin
jschell27-Dec-13 12:54
jschell27-Dec-13 12:54 
JokeRe: Pointers in C/C++ Pin
enhzflep4-Jan-14 8:26
enhzflep4-Jan-14 8:26 
QuestionXML parsing in QT Pin
Utheen26-Dec-13 16:44
Utheen26-Dec-13 16:44 
AnswerRe: XML parsing in QT Pin
Albert Holguin27-Dec-13 4:20
professionalAlbert Holguin27-Dec-13 4:20 
GeneralRe: XML parsing in QT Pin
Utheen29-Dec-13 20:48
Utheen29-Dec-13 20:48 
AnswerRe: XML parsing in QT Pin
Albert Holguin30-Dec-13 7:05
professionalAlbert Holguin30-Dec-13 7:05 
QuestionDynamically updating image (PNG) Pin
Don Guy26-Dec-13 12:53
Don Guy26-Dec-13 12:53 
AnswerRe: Dynamically updating image (PNG) Pin
Albert Holguin26-Dec-13 15:25
professionalAlbert Holguin26-Dec-13 15:25 
Questionhow to know file type and its protection type for office files? Pin
Le@rner24-Dec-13 1:22
Le@rner24-Dec-13 1:22 
SuggestionRe: how to know file type and its protection type for office files? Pin
Richard MacCutchan24-Dec-13 4:23
mveRichard MacCutchan24-Dec-13 4:23 
GeneralRe: how to know file type and its protection type for office files? Pin
Le@rner25-Dec-13 18:23
Le@rner25-Dec-13 18:23 
GeneralRe: how to know file type and its protection type for office files? Pin
Richard MacCutchan25-Dec-13 23:57
mveRichard MacCutchan25-Dec-13 23:57 
QuestionDirectShow - video resize interpolation Pin
sdancer7523-Dec-13 22:09
sdancer7523-Dec-13 22:09 
AnswerRe: DirectShow - video resize interpolation Pin
sdancer757-Jan-14 23:20
sdancer757-Jan-14 23:20 
AnswerRe: DirectShow - video resize interpolation Pin
sdancer754-Mar-14 21:52
sdancer754-Mar-14 21:52 
QuestionStuck at FILE_ATTRIBUTE_REPARSE_POINT attribute Pin
vishalgpt23-Dec-13 19:39
vishalgpt23-Dec-13 19:39 
AnswerRe: Stuck at FILE_ATTRIBUTE_REPARSE_POINT attribute Pin
Richard MacCutchan23-Dec-13 22:11
mveRichard MacCutchan23-Dec-13 22:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.