Link to home
Start Free TrialLog in
Avatar of wqclatre
wqclatre

asked on

Convert const char* to double

How do I convert const char* to double
Avatar of ozo
ozo
Flag of United States of America image

#include <stdlib.h>
double d = atof("1.5");

#include <stdio.h>
sscanf("1.5","%lf",&d);


Avatar of wqclatre
wqclatre

ASKER

Thanks!

Mark the question as answed!
ASKER CERTIFIED SOLUTION
Avatar of ozo
ozo
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for answeing so fast!