<u>The different between 32 bit and 64 bit version:</u>
- The main difference between 32-bit and 64-bit versions is that a 32-bit version can access
memory addresses which is roughly equivalent to 4 GB of memory.
- On the other hand, a 64-bit version can access
memory addresses which equates to a huge amount of memory, 16 exabytes to be precise.
- Nowadays, we observe that almost all the computers have 64-bit processors, which means that they can access any amount of memory over 4 GB till 16 exabytes.
- 64-bit processors have various advantages like the increased speed of operations, smooth multitasking and they can also support video games and software's that have high graphical requirements.
Answer
NO sorry
Have a great day
It's an internet protocol (Lightweight Directory Access Protocol) used to fetch data from servers.
Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
string * createAPoemDynamically()
{
string *p = new string;
*p = "Roses are red, violets are blue";
return p;
}
int main() {
while(true) {
string *p;
p = createAPoemDynamically();
if (!p)
{
cout << "Memory allocation failed\n";
}
cout<<*p<<"\n";
// assume that the poem p is not needed at this point
//delete allocated memory
delete p;
}
}