473,396 Members | 1,724 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How to convert an integer into a string

In my c++ code, I try to call "itoa"

#include <stdio.h>
#include <stdlib.h>

int index2
char buffer [4];
::itoa (index2,buffer,10);

but I get this compile error:

Context.cpp:2304: error: '::itoa' has not been declared

Can you please tell me how to fix that?

Thank you.

Feb 1 '06 #1
8 6905
i think its "_itoa()", isn't it?

Feb 1 '06 #2

si***************@gmail.com wrote:
In my c++ code, I try to call "itoa"

#include <stdio.h>
#include <stdlib.h>

int index2
char buffer [4];
::itoa (index2,buffer,10);

but I get this compile error:

Context.cpp:2304: error: '::itoa' has not been declared

Can you please tell me how to fix that?

Thank you.


There is no such function as itoa in standard C++.

http://www.parashift.com/c++-faq-lit....html#faq-39.1

Gavin Deane

Feb 1 '06 #3
Its a microsoft c++ function.

http://msdn.microsoft.com/library/de..._._ui64tow.asp

Feb 1 '06 #4

m...@miben.net wrote:
Its a microsoft c++ function.

http://msdn.microsoft.com/library/de..._._ui64tow.asp


So is CreateWindowEx. As such, both are off-topic in this newsgroup.

Gavin Deane

Feb 1 '06 #5
I would like to do this on Linux, with G++. I think this question is
on-topic in this newsgroup.

Thanks for any help.

Feb 1 '06 #6

si***************@gmail.com wrote:
I would like to do this on Linux, with G++. I think this question is
on-topic in this newsgroup.

Thanks for any help.


The question is on-topic and I posted a link to the FAQ which shows you
what you want. Here it is again.

http://www.parashift.com/c++-faq-lit....html#faq-39.1

The use of itoa was the off-topic bit.

HTH
Gavin Deane

Feb 1 '06 #7
Geo

si***************@gmail.com wrote:
I would like to do this on Linux, with G++. I think this question is
on-topic in this newsgroup.

Thanks for any help.


int i = 1234;
std::stringstream ss;
ss << i;
std::string str(ss.str());

Feb 1 '06 #8

mi***@miben.net escreveu:
i think its "_itoa()", isn't it?


According to the Standard (17.4.3.1.2):

"Each name that begins with an underscore is reserved to the
implementation for use as a name in the global namespace."

Thus this name (_itoa) is reserved to the implementation and as such is
implementation specific, and off-topic.

HTH,

Marcelo Pinto.

Feb 1 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: IamZadok | last post by:
Hi I was wondering if anyone knew how to convert a string or an integer into a Static Char. Thx
3
by: Convert TextBox.Text to Int32 Problem | last post by:
Need a little help here. I saw some related posts, so here goes... I have some textboxes which are designed for the user to enter a integer value. In "old school C" we just used the atoi function...
8
by: Carlos | last post by:
I have a strinf with comma separated field. Is is possible to convert it to a Structure ? Thanks
6
by: MrKrich | last post by:
I want to convert Hexadecimal or normal integer to Binary. Does VB.Net has function to do that? I only found Hex function that convert normal integer to Hexadecimal.
5
by: Mika M | last post by:
Hi! I've made little code to convert string into hex string... Public ReadOnly Property ToHexString(ByVal text As String) As String Get Dim arrBytes As Integer() = CharsToBytes(text) Dim sb...
14
by: Drew | last post by:
Hi All: I know I am missing something easy but I can't find the problem! I have a program which reads an integer as input. The output of the program should be the sum of all the digits in the...
20
by: Niyazi | last post by:
Hi all, I have a integer number from 1 to 37000. And I want to create a report in excel that shows in 4 alphanumeric length. Example: I can write the cutomerID from 1 to 9999 as: 1 ---->...
3
by: priyanka | last post by:
Hi there, I want to convert a String into integer. I get the string from a file using : string argNum; getline(inputStream,argNum); I now need to convert argNum into integer.
7
by: elliotng.ee | last post by:
I have a text file that contains a header 32-bit binary. For example, the text file could be: %%This is the input text %%test.txt Date: Tue Dec 26 14:03:35 2006...
7
by: shellon | last post by:
Hi all: I want to convert the float number to sortable integer, like the function float2rawInt() in java, but I don't know the internal expression of float, appreciate your help!
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.