Tagged Questions
The itoa tag has no wiki summary.
44
votes
13answers
80k views
Alternative to itoa() for converting integer to string C++?
I was wonding if there was an alternative to itoa() for converting an integer to a string because when I run it in visual Studio I get warnings, and when I compile my program under Linux, it won't ...
6
votes
3answers
245 views
How to convert an integer to a string portably?
I was looking for a way to convert an integer to a string in a portable manner (portable among at least Windows & Linux and x86 and x86_64) and I though itoa(X) to be standard just like atoi(1).
...
2
votes
1answer
90 views
simulate ulltoa() with a radix/base of 36
I need to convert an unsigned 64-bit integer into a string. That is in Base 36, or characters 0-Z. ulltoa does not exist in the Linux manpages. But sprintf DOES. How do I use sprintf to achieve the ...
2
votes
2answers
4k views
C Error: undefined reference to '_itoa'
I'm trying to convert an integer to a character to write to a file, using this line:
fputc(itoa(size, tempBuffer, 10), saveFile);
and I receive this warning and message:
warning: implicit ...
2
votes
4answers
482 views
itoa function problem
I'm working on Eclipse inside Ubuntu environment on my C++ project.
I use the itoa function (which works perfectly on Visual Studio) and the compiler complains that itoa is undeclared.
I included ...
2
votes
2answers
880 views
ANSI C, integer to string without variadic functions
I'm currently working with a SPC that supports ANSI C, but uses its own flavour of the GNU compiler, which doesn't compile any variadic functions and things like itoa. So using sprintf & co. isn't ...
1
vote
1answer
113 views
convert int to char* in standard C (without itoa)
I have declared and initialized two variables as shown below:
int a=5;
char* str;
str = (char*)calloc(255, sizeof(char));
I want to convert the int to char* in standard C. I cannot use any ...
1
vote
9answers
934 views
Convert integer to string without access to libraries [c]
I recently read a sample job interview question:
Write a function to convert an integer
to a string. Assume you do not have
access to library functions i.e.,
itoa(), etc...
How would you ...
1
vote
3answers
268 views
Base Conversion Problem
I'm trying to convert an integer to a string right now, and I'm having a problem.
I've gotten the code written and working for the most part, but it has a small flaw when carrying to the next place. ...
0
votes
4answers
100 views
What is the best practice of using itoa()
When I use itoa() it needs a char* _DstBuff, what is the best practice here?
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
int num = 100;
// I'm sure here is ...
0
votes
3answers
116 views
itoa creates an infinite loop in C++
This is very strange. itoa(); seems to create an infinite loop.
for(int i = 0; i < 10; i++)
{
char buffer[1];
itoa(i, buffer, 10);
std::cout << buffer;
}
Why on ...
0
votes
2answers
175 views
itoa in a template function
Code goes first:
template <typename T>
void do_sth(int count)
{
char str_count[10];
//...
itoa(count, str_count, 10);
//...
}
but I got some compile-error like this:
error: ...
0
votes
2answers
124 views
Integer number as char* for dummies
Question has been asking before, but I am still a bit at a loss as to the best way. I have an integer and would like to obtain a char* to use as a member of a struct.
Similar questions are for ...
0
votes
3answers
460 views
converting integer to string C++
I am trying to convert an integer to char array and I came across this piece of code
int i = 5;
std::string s;
std::stringstream out;
out << i;
s = out.str();
But when I try to print the ...
0
votes
5answers
215 views
Problem with concatenation + itoa
I have the following code:
char stringHour[50], stringMinute[50], stringSecond[50];
// lots of code...
itoa(hour, stringHour, 10);
itoa(minute, stringMinute, 10);
itoa(second, stringSecond, 10);
...
0
votes
1answer
230 views
Does itoa delete char?
Why does this give me a memory error?
char* aVar= new char;
itoa(2, aVar, 10);
delete aVar;
Does itoa delete the aVar? How to know if a C++ function deletes the pointer, is there a convention about ...
0
votes
4answers
767 views
itoa recursively
Ok, well i have been trying to write a recursive version of itoa, this is what i came up with.
void itoa(int n, char s[])
{
static int i = 0;
if(n / 10 != 0)
itoa(n/10, s);
...