Explanation:
#include<iostream>
#include<string.h>
using namespace std;
char *removestring(char str[80])
{
int i,j,len;
len = strlen(str);
for( i = 0; i < len; i++)
{
if (str[i] == ' ')
{
for (j = i; j < len; j++)
str[j] = str[j+1];
len--;
}
}
return str;
}
int main ()
{
char str[80];
cout << "Enter a string : ";
cin.getline(str, 80);
strcpy(removestring(str), str);
cout << "Resultant string : " << str;
return 0;
}
In this program the input is obtained as an character array using getline(). Then it is passed to the user-defined function, then each character is analyzed and if space is found, then it is not copied.
C++ does not allow to return character array. So Character pointer is returned and the content is copied to the character array using "strcpy()". This is a built in function to copy pointer to array.
Accenture is a company that was established with the aim of handling electronic waste. They were very much concern about how electronic waste is being disposed and as such they try to create ways to handle it. The e-stewards program was set up with the sole aim of management of electronic waste. its objectives includes;
- Make strategic and better world through well managed recycling solution to all electronic waste (e-waste) issues.
- The program also focus on making sure that electronic waste are been handled properly and they are not dumping of electronic waste in poor countries
- The objective also centers around no export of harmful electronic wastes.
- They also capitalizes on reuse and resale
- They are not only interested in stopping e-waste but to channeled it to repair, republish and re-manufacture
For better understanding, lets explain what E-waste means
- E-Steward objective is centered on managing and handling of electronic waste. It was a project that was birth out of rising concern about electronic waste, especially due to rising concerns that electronic waste generated by rich countries was being shipped off to poor countries.
- Accenture e-steward make sure that electronic waste are well disposed, no more shipping of electronic waste to poor countries and also recycling of electronic waste product.
- E-waste in the above simply means non functional or disposed electronic equipment such as computers, cell phones, television sets, etc.
From the above, we can therefore say that the e-stewards program is concerns about how electronic waste generated by rich countries was being shipped off to poor countries and also the recycling of electronic waste product such as television, computers etc.
Learn more about E-waste from:
brainly.com/question/15391967
Answer:
Hardware security is vulnerability protection that comes in the form of a physical device rather than software that is installed on the hardware of a computer system. ... Common examples include hardware firewalls and proxy servers.
Explanation:
Thank you
Answer:
WASHED OUT OR ERASED
Explanation:
The memory modules or the chips store the data as well as the programs when they have to be processed through the CPU, They are on the motherboard. However, when the computer is switched off, then the information stored on the RAM, cache or register gets erased, and only the data which is saved on the ROM gets saved when the power is turned off.