//Declaration: long double strtold(const char * restrict start, char restrict ** restrict end);
#include
#include
#include
int main(void)
{
char *end, *start = "200.00 AAA 100.00 BBBB";
end = start;
while(*start) {
printf("%f, ", strtold (start, &end));
printf("Remainder: %s\n" ,end);
start = end;
while(!isdigit(*start) && *start)
start++;
}
return 0;
}