Answer:
The higher the clockspeed the more the cpu can do
Explanation:
Answer:
#include <iostream>
#include<string.h>
using namespace std;
void printCharacter(string name){
for(int i=0;name[i]!='\0';i++){
cout<<name[i]<<endl;
}
}
int main()
{
string name;
cout<<"enter the name: ";
cin>>name;
printCharacter(name);
}
Explanation:
first include the two libraries iostream for input/output and string library for using the string.
then, create the main function and declare the variable type string.
cout instruction is used o display the message on the screen.
cin is used to store the value in the name variable.
after that, call the function. The program control move to the the function. In the function for loop is used to print the character one by one until end of the name.
MCKibben argues that the inhabitable planet is shrinking because:
- Consistently higher temperatures will likely make certain areas uninhabitable
- Desertification will reduce the amount of harvestable land
- Coastlines are being lost to sea level rise.
<h3>What is Shrinking?</h3>
This is the process in which an object or place becomes smaller as a result of various activities.
The most suitable options which explains why the planet is shrinking is as a result of a reduction in the areas in which humans can live as a result of the factors mentioned above.
Read more about Planet here brainly.com/question/11157969