Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
3k views

Why do I get this unexpected result using atoi() in C?

I don't understand the results of the following C code. main() { char s[] = "AAA"; advanceString(s); } void advanceString(p[3]) { int val = atoi(p); printf("The atoi val is ...
7
votes
5answers
3k views

How do I tell if the c function atoi failed or if it was a string of zeros?

When using the function atoi (or strtol or similar functions for that matter), how can you tell if the integer conversion failed or if the C-string that was being converted was a 0? For what I'm ...
5
votes
11answers
596 views

like atoi but to float

Is there a function similar to atoi which converts a string to float instead of to integer?
4
votes
2answers
454 views

Where did the name `atoi` come from?

Ok I've been curious about this for a while. In the C language where did they come up with the name atoi for converting a string to an integer? The only thing I can think of is Array To Integer for an ...
4
votes
1answer
283 views

int from string in go

What's the function to create a int value from string i := ???.????( "10" )
4
votes
5answers
341 views

string program for ice cream shop (Edited again)

With the assistance of others, I have redone the code from scratch due to them pointing out numerous errors and things that wouldn't work. Thus I have changed the code massively. I have the program ...
3
votes
5answers
151 views

C - Comparing numeric strings

Out of professional curiosity, what is the safest / fastest / most efficient way to compare two fully numeric strings in C? #include <stdio.h> #include <string.h> #include ...
3
votes
3answers
3k views

convert string to integer sscanf or atoi

gcc 4.4.4 c89 What is better to convert a string to an integer value. I have tried 2 different methods atoi and sscanf. Both work as expected. char digits[3] = "34"; int device_num = 0; ...
3
votes
2answers
294 views

How do you use atoi to assign individual elements of a char array?

So as we all probably know, the atoi converts a char to a number. But, what do you do if you only want one of the array elements instead of the whole array? Please look at the following: for (h = 0; ...
3
votes
4answers
494 views

Segfault in atoi(str)

I'm new to the C/C++ game so I assume I'm making a rookie mistake: int main(){ char* clen; clen = getenv("CONTENT_LENGTH"); if (clen==NULL){ cout << "No such ENV var: ...
3
votes
5answers
3k views

atoi() conversion error

atoi() is giving me this error: error C2664: 'atoi' : cannot convert parameter 1 from 'char' to 'const char *' Conversion from integral type to pointer type requires reinterpret_cast, ...
2
votes
5answers
64 views

atoi conversion to return a single digit value

I have a character array like this : +---+---+---+ |53.|.7.|...| |6..|195|...| |.98|...|.6.| +---+---+---+ I am using an int array to store particular values at specific indexes. For conversion i ...
2
votes
2answers
168 views

atoi function in C not working properly

Can somebody explain why atoi function don't work with nuber who have more than 9 digits. For example: I entered 123456789, program says 123456789, but when i entered 12345678901 program say ...
2
votes
5answers
150 views

c++ weird problem converting a char to int

I'm a total newbie to C++ and I was trying to do one of the problems from Project Euler when I had a very weird problem. I reduced the error to the following. Consider the following simple code: ...
2
votes
4answers
331 views

equivalent of atoi

Is there a function that could replace atoi in c++. I made some research and didn't find anything to replace it, the only solutions would be using cstdlib or implementing it myself
2
votes
1answer
92 views

Not able to understand Atoi function - *string - '0'

What exactly does the below statement do? const char *string *string - '0' Thanks!
1
vote
2answers
51 views

How to get first argument of a program call

I'm making a program in C and this is my code: int main(int argc, char **argv) { int n; char aux[10]; sscanf(argv[1], "%[^-]", aux); n = atoi(aux); } So, if I run the program from ...
1
vote
4answers
98 views

Why does atoi() cause a buss error

#include <stdlib.h> #include <stdio.h> main() { const char* str_int = "777"; const char* str_float = "333.3"; int i = atoi(str_int); float f = atof(str_float); ...
1
vote
5answers
152 views

Understanding an atoi() function

I'm a python programmer getting to learn C from the K&R book. This will seem like an awfully trivial question, but I'm stumped nonetheless. Attached below is a snippet of code from the K&R ...
1
vote
6answers
121 views

atoi with ints and doubles

Can I use atoi to convert a text input to a dialog box to a double? I need to do a calculation on several double values that have been input using a dialog box. I only know of 'atoi' but is this for ...
1
vote
2answers
500 views

c atoi() for wide chars on linux?

Is there a c atoi() equivalent for wide chars on Linux? I can find something for MS (wtoi) but I can find anything in a standard Linux lib.
1
vote
7answers
354 views

How to check to ensure you have an integer before calling atoi()?

I wish to take an integer as a command line argument, but if the user passes a non-integer string, this will cause a stack overflow. What is the standard way to ensure atoi() will be successful?
1
vote
5answers
1k views

Using atoi with char

Is there a way of converting a char into a string in C? I'm trying to do so like this: char *array; array[0] = '1'; int x = atoi(array); printf("%d",x);
1
vote
2answers
511 views

C++ LPTSTR to int (but memory overwrite problem using atoi)

I have the following code, m_edit is a MFC CEdit (I know I would never use MFC but project demanded it). It's a simple loop, that gets the text from a text edit, converts it to integer after getting ...
1
vote
3answers
658 views

Am I incorrectly using atoi?

I was having some trouble with my parsing function so I put some cout statements to tell me the value of certain variables during runtime, and I believe that atoi is incorrectly converting characters. ...
1
vote
5answers
474 views

C Convert String to Ints Issue

I'm trying to parse some input on an embedded system. I'm expecting something like this: SET VARNAME=1,2,3,4,5,6,7,8,9,10\0 When I'm converting the separate strings to ints, both atoi() and ...
1
vote
6answers
1k views

What is difference between my atoi() calls?

I have a big number stored in a string and try to extract a single digit. But what are the differences between those calls? #include <iostream> #include <string> int main(){ ...
0
votes
3answers
87 views

I don't understand atoi function in K&R C book?

#include <stdio.h> #include <string.h> int main(void) { char s[]= "9"; printf("atoi = %d",atoi(s)); system("pause"); return 0; } int atoi(char s[]) { int i=0,n=0; ...
0
votes
1answer
75 views

Using read() and putting the buffer into a string

this is my second question as i've had trouble with the first one due to this problem. I have a file which i have to read using the read() statment, no no fget() or fread() etc i use the line. ...
0
votes
1answer
80 views

Putting a 2D char array into a struct, don't know where to start

i'm pretty new to forums so i hope i don't mess up. I have a program that reads from a file, so far it puts the file into a 2D char array. I now need to strtok the 2D 'string' and place each part into ...
0
votes
5answers
63 views

Reading a number from a file and converting it to an integer in C

I have a FILE variable, declared as FILE *fin. fin = fopen( "points.dat", "r" ); is initialized after the declaration. I've been trying to loop through fin while fgetc( fin ) != '\n'. Here's where ...
0
votes
2answers
60 views

separating string of characters and int from a input string in c++

I am trying to sort integers and strings from an input string. #include <stdio.h> #include <time.h> #include <stdlib.h> #include <string.h> int main(){ char x[10]; ...
0
votes
4answers
352 views

What is atoi equivalent for 64bit integer(uint64_t) in C that works on both Unix and Windows?

I'm trying to convert 64bit integer string to integer, but I don't know which one to use.
0
votes
1answer
73 views

Reading from Data doesn't work, but why?

well, i've struggeling with this problem for hours. but for some reasons i can't find the damn mitstake. I really hope that u can finally help me. following, i've written a program where the user has ...
0
votes
0answers
138 views

Reading from, modifying, and writing back to a text file

I'm making a program to that will do three things. Read in an integer from a text file Modify the value (e.g. add to it or subtract from it) "Save" the new integer value is back to the text file, so ...
0
votes
4answers
252 views

Working with atoi

I have been attacking atoi from several different angles trying to extract ints from a string 1 digit at a time. Problem 1 - Sizing the array Should this array of 50 chars be of size 50 or 51 (to ...
0
votes
4answers
186 views

convert array of characters to array of integers in C

I'm passing in an argument to a C program: program_name 1234 int main (int argc, char *argv[]) { int length_of_input = 0; char* input = argv[1]; ...
0
votes
1answer
272 views

C++ - Unhandled exception when using atoi()

When using this code, it throws an unhandled writing exception, which I'm almost certain is to do with the atoi() function. while(true){ char* item = ""; cin ...
0
votes
5answers
117 views

Why is this IO operation looping infinitely?

I am trying to read from a text file and tokenize the input. I was getting a segmentation fault until I realized I forgot to close my ifstream. I added the close call and now it loops infinitely. I'm ...
0
votes
9answers
370 views

atoi and leading 0's for decimal numbers

When using atoi in C I am trying to convert a char array of numbers to an int. I have leading 0's on my number though and as the C compiler will convert it to octal I am stuck what to do as I want it ...
0
votes
6answers
272 views

Using atoi() funct in C

I wanna convert string to integer.But my string is 234,23,34,45.If i use atoi, it gives me only 234.I wanna convert all integers in my string.How can i use atoi to solve this or what can i use instead ...
0
votes
3answers
716 views

Why is atoi giving me a segmentation fault?

I have the following piece of code: #include <stdio.h> int main ( int argc, char *argv[] ) { int M, N; M = 1; N = 1; curr = 1; if ( argv[1][0] == '-' ) { curr ...
0
votes
0answers
426 views

cstdlib/stdlib.h error

I am getting an error with cstdlib and stdlib.h, it appears to deal with line 60 (... extern "C"...), I need to use atoi() for a program I am writing(not school related). I am wondering if anyone ...
0
votes
5answers
358 views

Non-Integer numbers in an String and using atoi

If there are non-number characters in a string and you call atoi [I'm assuming wtoi will do the same]. How will atoi treat the string? Lets say for an example I have the following strings: ...
0
votes
2answers
600 views

passing argument 1 of 'atoi' makes pointer from integer without a cast…can any body help me

#include<stdio.h> #include<string.h> #include<stdlib.h> int main(){ int n; int a,b,ans[10000]; char *c,*d,*e; int i = 0; c = (char*)(malloc(20 * sizeof(char))); ...
0
votes
2answers
199 views

Retrieve Value from NSString

i have a NSString instance ,i want to retrieve value from it and store it into an integer. This is wat i am doing but its not working. NSString *totalcnt; char *str = totalcnt; int a = atoi(str); ...
0
votes
2answers
280 views

Reading from a file, atoi() returns zero only on first element

I don't understand why atoi() is working for every entry but the first one. I have the following code to parse a simple .csv file: void ioReadSampleDataUsers(SocialNetwork *social, char *file) { ...
0
votes
4answers
261 views

Why is atoi returning random numbers?

I am trying to read in data from a text file (the time). and convert that into something that can be DiffTime'ed to the current system time. I am now so close to getting this working correctly, I can ...