How to store the hex value generated by MD5 as an integer?

You are printing the decimal value of each byte (254, 23, 236, ...), not a single 128-bit value converted to an int. Your loop should look something like value.

You can't store a 128-bit value in an int (unless int is at least 128 bits on your C implementation, which I confidently predict it isn't). Same goes for long long, the biggest standard integer type.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions