atoi() is the C runtime library function for converting the ASCII representation of a number to an integer. This SO tag also applies to atol(), atoll(), and atoq() which perform the same conversion to types "long" and "long long".
0
votes
3answers
67 views
Can't make atoi take in a string (string vs. C-string?)
I have read a line from a file and I am trying to convert it to an int. For some reason atoi() (convert string to integer) won't accept a std::string as an argument (possibly some issue with strings ...
0
votes
1answer
61 views
C++ atoi grabs values of other characters created in same portion of program
I am trying to read a string of 9 characters into 9 integer values, to be stored in an array (for now I store them in 9 separate ints, will put them in the array once they read in OK). General ...
-2
votes
1answer
71 views
atoi() makes the program crash
I have a strange problem with atoi():
I have a string (let's say str) which is something like "aaaa 1111\0" (I printed and checked - it's really it).
I tried to perform atoi on str+5, and the program ...
-3
votes
2answers
55 views
Parse human-readable sizes (k, M, G, T) into bytes in C
I'm looking for a quick way to parse human-readable byte sizes (examples: 100, 1k, 2M, 4G) into a byte values. The input is a char * and the output must be a size_t (e.g. unsigned, likely 64-bit or ...
3
votes
5answers
88 views
Creating an atoi Function
I'm attempting to create my own atoi function. With the following I'm getting a return value of 0. Whatever I change the number variable within the function is what I get as a return value. Any ...
0
votes
2answers
97 views
Using atoi() in C to parse character array with binary values
I am trying to convert a string of binary characters to an integer value.
For example: "100101101001" I would split it into four segments using a for loop then store it in array[4]. However whenever ...
0
votes
2answers
128 views
Use of atoi C++ [closed]
I've got the following function in C++:
#include <iostream>
#include <cmath>
#include <stdlib.h>
bool isPrime(char myArr[])
{
int myInt=atoi(myArr);
int ...
3
votes
2answers
88 views
Odd atoi(char *) issue
I'm experiencing a very odd issue with atoi(char *). I'm trying to convert a char into it's numerical representation (I know that it is a number), which works perfectly fine 98.04% of the time, but it ...
0
votes
1answer
390 views
Convert String of ASCII digits to int in MIPS/Assembler
Im writing some MIPS code to take a string of ASCII digits and convert the string into an integer. The string is entered by the user and can be at most 10 digits in length. My code works fine and ...
1
vote
3answers
92 views
atoi function in K&R C book
I have some problems with an example of atoi() function from K&R C 2nd edition. Only characters from 0 to 9 should be used. But somewhere in the logic of my program I do something wrong.
So in ...
0
votes
1answer
34 views
How to convert a char array to integer
I have an array of 1's and 0's which is compressed in such a way that when the number of 1's is greater than 10 it writes +n+ when n in the number of 1's and when the number of 0's is greater than 10 ...
0
votes
0answers
23 views
why strtol and atoi return such values
Why strol and atoi returns such values?
or Where can I get the implementations of these two functions? So I may get the answer by reading the source code...
const string str11 = ...
0
votes
1answer
124 views
Why are atoi and strtol only returning the first number from my string most of the time?
I'm trying to get ints from a c file that has input like this:
(0 3 200 3) (0 9 500 3) (98 20 500 3) (100 1 100 3) (100 100 500 3)
atoi and s work fine for the first number after the parenthesis (I ...
4
votes
4answers
137 views
Using atoi to fill an array of ints
First time asking a question on here. Apologies if there's already threads about this but i had a few searches and didn't quite find what i think i was looking for. I'm very new to C and am working ...
-1
votes
3answers
160 views
C++ atoi with unsigned char
I got an unsigned char with the value of 1, I need to put this in a string like "1".
But if I try to put this directly into a stringstream it will get the value of char(1) and I need it to be "1".
I ...
1
vote
5answers
121 views
isalpha always returns 0 [closed]
Here's the code that I'm using it to check whether key is a number:
string key;
cin>>key;
if(isalpha(atoi(key.c_str())) == 0)
{
//do something
}
else
//do something else
No matter ...
0
votes
2answers
181 views
using strcpy for copying string into the element at index retrieved with atoi
Here's the code, which is supposed to execute the first command in history when "history 1" is entered:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main (int ...
0
votes
4answers
85 views
I came across this line in atoi() and couldnt understand what it did
I have the following code.
while (*str != '\0')
{
digit = *str - '0';
result = result * radix + digit;
str++;
}
What does *str -'0' mean here.?
2
votes
1answer
129 views
Read first character of string as integer in C
How would I go about reading the first character of this string as an integer?
char *p = argv[1];
Thank you!
1
vote
2answers
61 views
Segmantation Fault with atoi in C [closed]
I'm new to C and I've got following problem: I want to save the parameter as an integer. Thefore a wrote this code:
int main(int argc, char argv[]) {
if(argc > 1) {
int test = ...
0
votes
0answers
72 views
comparing atoi integer conversion with int literal not working
I basically have a function which loops through a string of characters, at each character the function converts the character into an integer using atoi() function and sends it to another function ...
7
votes
8answers
209 views
Understanding how to create atoi; How are characters compared?
I am trying to improve my understanding of C++, pointer arithmetic especially. I use atoi pretty often, but I have rarely given thought as to how it works. Looking up how it is done, I understand it ...
-3
votes
1answer
115 views
How Does C++'s atoi work?
So I have the following code:
void Start(int &year, string &mon, char &nyd)
{
printf("%s", mon);
int month= atoi(mon.c_str());
printf("%i", month);
}
When the incoming ...
1
vote
2answers
79 views
atoi() is not converting properly
I was trying to call atoi on the strings 509951644 and 4099516441. The first one got converted without any problem. The second one is giving me the decimal value 2,147,483,647 (0x7FFFFFFF). Why is ...
-2
votes
3answers
104 views
How to get numbers from this type of string in C
1 13 3 4; 5 6 7 8; 9 10 11 12; 2 15 14 0
How can I get numbers from this string in ANSI C?
I tried to separate it with strtok() :
char *vstup = argv[1];
char delims[] = ";";
char *result = NULL;
...
3
votes
1answer
73 views
atoi doesnt seem to be working properly
for(int y = 0; y < 5; y++)
{
char cst1[2] = {info[x+2], info[x+3]};
char cst2[2] = {info[x+5], info[x+6]};
sales[count][atoi(&info[x]) - 1] = atoi(cst1) + atoi(cst2);
x += 8;
}
...
2
votes
0answers
133 views
STM32 atoi and strtol sometimes missing first 2 digits
I am reading a value sent over RS485 which is the value of an encoder I first check if it has returned an E character (the encoder is reporting an error) and if not then do the following
...
0
votes
2answers
255 views
Why is ATOI returning a 0 in this code?
I'm just getting started out with C and I'm trying to learn the ATOL function. Can someone tell me why it keeps printing a 0? I know that means that the conversion can't be performed, but I'm not sure ...
0
votes
3answers
623 views
Converting string to int (C++)
I looked everywhere and can't find an answer to this specific question :(
I have a string date, which contains the date with all the special characters stripped away. (i.e : yyyymmddhhmm or ...
3
votes
4answers
199 views
C++ - error while using atoi
I am trying to use the atoi function in order to obtain conversion from string to int. The thing is that I have a string array which contains both integers and string values.
From what I've read, in ...
0
votes
3answers
72 views
C getting input with string, and converting part of it to an integer [closed]
So I'm doing what the title says with this code
else if(input[0] == 'i'){
printf("This works");
if(isspace(input[1])){
x = 2;
while(input[x] != '\0'){
...
-2
votes
1answer
193 views
How to store an integer in a single index of character array?
I want to store a single integer in a single index of character array. The itoa function is not working in this case. Can anyone help?
5
votes
3answers
842 views
implement atoi() of C in PHP [closed]
There's a function in C, atoi(), implement this in PHP;
$string = '5467'; //function should return 5467 as integer
So this is what I found (its implementation in C)
int myatoi(const char *string) ...
-2
votes
1answer
382 views
warning: passing argument 1 of 'atoi' from incompatible pointer type? [closed]
I have the following code which is producing an error: fscanf(atoi(pointer), "%d", &values[i])
When i try to make the program, I get the error warning: passing argument 1 of 'atoi' from ...
4
votes
2answers
295 views
Can't convert STRING to INT in C++ in LINUX
I've tried many ways, as detailed in here: http://www.cplusplus.com/forum/general/13135/
Most of them work if I run the file on Windows, but when I try to do so on LINUX, none of them works.
For ...
3
votes
2answers
676 views
Why atoi function can't convert const char * to int?
Why does in this code the atoi() function does not work properly and why does the compiler give this error:
initializing argument 1 of `int atoi(const char*)'
My code follows:
#include ...
-2
votes
2answers
171 views
C : Typecasting output of atoi() to unsigned char?
I've boiled down the issue to a typecasting problem from atoi()'s output. Basically, I pass a string.c_str() to atoi(), and I can 'cout' the value just as I'd expect (32). However, if I do a typecast ...
1
vote
2answers
101 views
potential for error in C atoi function
Is there anything you could supply to the atoi function that would produce an error (that may or may not crash the program)?
EDIT: An error is defined as anything that would produce a compilation ...
2
votes
6answers
138 views
atoi in java for negative values
I am writing an atoi function in java. It runs fine for +ve integers. But what i want is when I enter a negative integer it should give me an error. So i tried including continue statement in my class ...
1
vote
4answers
148 views
pointer of char array to integer in c
This is my code:
char str[] ="";
scanf("%s",&str);
char * pch;
pch = strtok (str,"#");
printf ("%s\n",pch);
return 0;
I need to render an input of "1#2#3" to three integers first, second and ...
2
votes
3answers
183 views
Tokenized string of char to ints using atoi
I am trying to take user input: (1 345 44 23) and make it into a tokenized char string then into ints. Surprisingly I could not find much help for what I would think would be a common task.
Any ...
0
votes
3answers
91 views
I need to read all integers, mathematical operators, and characters in a string
I have a string which may contain either single integers between 0-9 or mathematical operators (+, -, *, /).
Basically, I need to read in all characters / numbers. I am checking if the character is ...
1
vote
2answers
126 views
C Trying to check for invalid input
I'm using scanf("%s", u); so I take a string. I can take the characters q, c, -, +, /, *, %, ^, =, and integers, but for everything else I want my program to display an error message. How would I know ...
2
votes
3answers
1k views
Return value of atoi (argv[1]) is always 0
everyone, I'm running into a problem about return value of atoi().
I want to convert the char in command line argument argv[1] into int type and print if out.
Here is my code.
#include ...
0
votes
4answers
209 views
understanding ATOI function
Hi I have a text file which contains the below data
ABC00011234567
XYZ00021234567
To get the data, i have defined a structure
typedef struct data {
char x[3];
char y[4];
char z[7];
} key;
in ...
7
votes
4answers
4k views
atoi implementation in C
I can't understand the following atoi implementation code, and specially this: k = (k<<3)+(k<<1)+(*p)-'0';
The code:
int my_atoi(char *p) {
int k = 0;
while (*p) {
k = ...
0
votes
2answers
136 views
Trouble with atoi(s) and main with arguments. C
I'm having some issues using the atoi(s) function. I'm trying to convert a command line argument into an integer, but the integers I am receiving from the atoi function are acting strange. I have ...
1
vote
0answers
162 views
How to calculate the true symbol address in a binary for use with atos?
I've been trying to figure out a way on how to calculate the exact symbol addresses from stack adresses I get from the crash reports. I've found the following formula: ...
0
votes
1answer
92 views
change value of element in list c++
this is what im doing, im getting some info from a .txt file those are numbers of course when im getting them i get them as strings in a list of strings...(i know it could be chars but in this example ...
0
votes
4answers
187 views
Is atoi() part of C standard?
Is atoi() part of C standard?
What should I use to convert char* to int if atoi() isn't standardised?


