Ok so I am stuck it's homework so I am not looking for anyone to do it for me i just need some help getting my mind on the right track.
what i am doing is pretty much having the user enter a string of "$234,324,324.66" and have it print out 234324324.66 as a long double
so my thought process is this
I have the user enter in the money into a char array
parse the char array
and any numbers 1-9 or decimal are put it in a string
then use _atold() to convert the string into a long double
pretty much need help with the parsing the char array i seem to have the process on the tip of my brain and have been searching for answers but am running around in circles
any help muchly appreciated.