Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

strtof - Converts the string into a float and returns the result in C

  #include <stdlib.h>
  #include <ctype.h>
  #include <stdio.h>

  int main(void)
  {
    char *end, *start = "100.00 AAA 200.00 BBBB";

    end = start;
    while(*start) {
      printf("%f, ", strtof (start, &end));
      printf("Remainder: %s\n" ,end);
      start = end;
      /* move past the non-digits */
      while(!isdigit(*start) && *start) start++;
    }

    return 0;
  }