#include <string.h> volatile double dval; char s1[10]; int main (void) { strcpy(s1,"1234.56"); //dval = atof(s1); sscanf(s1,"%lf",&dval);
確定! 回上一頁