+ 1
32 bit to 64 bit
how to make 32 bit a 64 bit anybody know
2 Antworten
+ 3
You can't make 32 bit to 64. check your processor go to computer properties if there is listed 64 based processor only than you can change your operating system to 64 otherwise don't for further information click on this link -> https://www.windowscentral.com/how-upgrade-32-bit-64-bit-version-windows-10
+ 3
Are you asking for how to convert a 32 bit integer into 64 bit integer? If that's the case you can simply assign the value from the 32 bit integer to 64 bit integer by using the proper data type. e.g. int (32 bit, commonly) and long long (64 bit). However, I have seen people debating over size of types, so probably, in the end you'll need to consult your compiler manual, to see how it actually works with types.
Sorry if I misunderstood your question, it was not clear enough to easily understood :)