hi
when i try to use atof i get different values every time i run my app
code:
#include <stdio.h>
#include <string.h>
#include <math.h>
int main(int argc, char **argv){
char* a = "100";
double b = atof(a);
printf("%f", b);
}
why do i get different results everytime i run my app???