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;
}
}
Answer:
1. Computer crime
2. Responsibility for computer failure
3. Protection of computer property, records, and software
4. Privacy of the company, workers, and customers
5. Computer safety
Answer:
Calcium
Explanation:
Calcium is a necessity and makes your bones stronger. It typically comes in milk.
It's details view. I hope this help.