Tagged Questions
The strtol tag has no wiki summary.
5
votes
4answers
110 views
Confusing language in specification of strtol, et al
The specification for strtol conceptually divides the input string into "initial whitespace", a "subject sequence", and a "final string", and defines the "subject sequence" as:
the longest initial ...
5
votes
6answers
780 views
Getting a hexadecimal number into a program via the command line
I can do this:
int main(int argc, char** argv) {
unsigned char cTest = 0xff;
return 0;
}
But what's the right way to get a hexadecimal number into the program via the command line?
unsigned ...
4
votes
4answers
299 views
std::atoll with VC++
I have been using std::atoll from cstdlib to convert a string to an int64_t with gcc. That function does not seem to be available on the Windows toolchain (using Visual Studio Express 2010). What is ...
3
votes
5answers
153 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
5answers
310 views
Do I need to cast the result of strtol to int?
The following code does not give a warning with g++ 4.1.1 and -Wall.
int octalStrToInt(const std::string& s)
{
return strtol(s.c_str(), 0, 8);
}
I was expecting a warning because strtol ...
3
votes
4answers
617 views
Convert a string to int (But only if really is an int)
In college I was asked if our program detects if the string enter from command line arguments is a integer which it did not(./Program 3.7). Now I am wondering how I can detect this. So input as for ...
2
votes
4answers
92 views
How can I manually parse a custom DateTime format with optional fields in C#
Let's say I have the following dates/times in some in-house almost-ISO-like format:
"2011-11-07T11:17"
"--T11:17" (11:17 am, no date, only time)
"-11-07" (november the 7th, no year, no time)
The ...
2
votes
6answers
870 views
atol() v/s. strtol()
What is the difference between atol() & strtol()?
According to their man pages, they seem to have the same effect as well as matching arguments:
long atol(const char *nptr);
long int ...
1
vote
2answers
129 views
Segmentation Fault for numeric input
I'm writing my first ever program in C and it's giving me a lot of problems.
It's fairly simple; input a number and the output will be the corresponding term in the Fibonacci sequence where the first ...
0
votes
3answers
50 views
Why does this combination of strtol and strtok not work?
Could anyone tell me what is wrong with this code?
for(int i=0;i<4;i++)
{
long int a = strtol(strtok("1-2-3-4","-"),(char**)NULL,10);
cout << a <<endl
}
I'm running on ...
0
votes
1answer
93 views
strtol not behaving as expected, c
#include<limits.h>
#include<errno.h>
long output;
errno = 0;
output = strtol(input,NULL,10);
printf("long max = %ld\n",LONG_MAX);
printf("input = %s\n",input);
printf("output = ...
0
votes
3answers
83 views
strtol not detecting integer overflow
I'm trying to convert a character array into an integer using strtol using the below code:
int foo = strtol(temp, (char **)NULL, 0);
Where temp = 4000000010
However strtol does not detect the ...
0
votes
2answers
67 views
reading an integer from a file
I have a code which suppose to read an integer from a file. But its actually reading as an character. Suggest me some modification where I can read the integers into an array.
fptr ...
-3
votes
3answers
202 views
Using strtoul in C [closed]
In C, why does
strtoul(argv[1])
just doesn't work? It looks like more parameters are needed but I can't prevent how long the number will be.
Thanks!
p.s. (argv[1] is properly setted).