/*this program converts string to the double.*/ #include #include #include using namespace std; int main(void) { char const *str = " 1.0 2.0 3.0 4.0 5.0 "; char *str_end; double array[5]={0.0 ,0.0, 0.0, 0.0 , 0.0}; //cout << "Here is the array's 1st member " << strtod(str,&str_end) <