32 bit to 64 bit | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

32 bit to 64 bit

how to make 32 bit a 64 bit anybody know

14th Nov 2017, 3:03 PM
Pegasus Rockzz
Pegasus Rockzz - avatar
2 Réponses
+ 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
14th Nov 2017, 3:09 PM
~Sudo Bash
~Sudo Bash - avatar
+ 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 :)
14th Nov 2017, 3:33 PM
Ipang