Tagged Questions
The atof tag has no wiki summary.
6
votes
5answers
2k views
C++ - locale-independent “atof”?
I'm parsing GPS status entries in fixed NMEA sentences, where fraction part of geographical minutes comes always after period. However, on systems where locale defines comma as decimal separator, atof ...
3
votes
3answers
149 views
Conversion problem in ansi c [closed]
Possible Duplicates:
Floating point inaccuracy examples
Is JavaScript's Math broken?
I need to convert some data from txt file into double value and I'm using this function for this : ...
2
votes
2answers
494 views
Reading ASCII numbers using “D” instead of “E” for scientific notation using C
I have a list of numbers which looks like this: 1.234D+1 or 1.234D-02. I want to read the file using C. The function atof will merely ignore the D and translate only the mantissa.
The function fscanf ...
2
votes
10answers
589 views
any one know how to convert a huge char array to float, very huge array, performance better than the atof/strtod/sscanf
I got a char array, a huge array char p[n] read from a txt like.
//1.txt
194.919 -241.808 234.896
195.569 -246.179 234.482
194.919 -241.808 234.896
...
foo(char *p, float x, float y, float z)
{
...
1
vote
4answers
261 views
unable to convert contents in argv[] into float[][] in C
I am doing a program where I'm multiplying matricies, but my big issue is converting from the input into the two arrays that I'll eventually be multiplying. The following is my code for conversion ...
1
vote
3answers
176 views
How to read a file, pick up data and calculate
I am reading a book and I can't figure out this try it out : (it is in a non-english language so I translated it)
Write a program that ask for a number of students n, select n students (in a dynamic ...
0
votes
2answers
76 views
set precision when push_back on Vector
I'm reading from a CSV, line by line and tokenizing each comma separated value. each token is a string type. and I'm putting it into a vector of type float. In the example below, if for example if the ...
0
votes
2answers
172 views
Atof not working?
So I'm writing a program for a school project, and part of it requires having a user put in a random number at the command line. The program then uses atof to convert the number to a float so I can do ...
0
votes
5answers
437 views
Not including stdlib.h does not produce any compiler error!
Hopefully this is a very simple question. Following is the C pgm (test.c) I have.
#include <stdio.h>
//#include <stdlib.h>
int main (int argc, char *argv[]) {
int intValue = ...
0
votes
3answers
311 views
Converting a string like “2.12e-6” to a double
Is there a built in function in c++ that can handle converting a string like "2.12e-6" to a double?
0
votes
2answers
161 views
Scanning, Checking, Converting, Copying values … How to ? — C --
Its been a while now and im still trying to get a certain code to work. I asked some question about different commands etc. before, but now I hope this is the final one (combining all questions in one ...
0
votes
4answers
1k views
C++ error converting a string to a double
I am trying to convert a string to a double. The code is very simple.
double first, second;
first=atof(str_quan.c_str());
second=atof(extra[i+1].c_str());
...