Cannot assign a value to 64-bit integer on 32-bit platform?

You need to make the integer constant of the right type. The problem is that 0x100000000 is interpreted as an int and casting / assignment doesn't help: the constant itself is too big for an int . You need to be able to specify that the constant is of uint64_t type.

What you've written is perfectly valid C99 (assuming you've #included )¹. So it looks like you've invoked your compiler in C89 mode rather than C99 mode. In C89, there is no guarantee that a 64-bit type is available, but it's a common extension.

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