Click here to Skip to main content
16,006,594 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Recursive Question Pin
Graham Shanks7-Jun-08 12:48
Graham Shanks7-Jun-08 12:48 
GeneralRe: Recursive Question Pin
codedecode7-Jun-08 13:28
codedecode7-Jun-08 13:28 
GeneralRe: Recursive Question Pin
Nelek7-Jun-08 13:44
protectorNelek7-Jun-08 13:44 
GeneralRe: Recursive Question Pin
codedecode7-Jun-08 14:33
codedecode7-Jun-08 14:33 
GeneralRe: Recursive Question Pin
Graham Shanks8-Jun-08 23:59
Graham Shanks8-Jun-08 23:59 
AnswerRe: Recursive Question Pin
BadKarma9-Jun-08 3:22
BadKarma9-Jun-08 3:22 
Questionnumber and string Pin
sofia_1117-Jun-08 10:21
sofia_1117-Jun-08 10:21 
AnswerRe: number and string Pin
Graham Shanks7-Jun-08 10:50
Graham Shanks7-Jun-08 10:50 
There are a number of ways, depending which type of string you are using.

For std::string

#include <sstream>

std::ostringstream temp;
temp << value;
std::string result(temp.str());
</sstream>


For CString

CString str;
str.Format("%.1f", floatValue);
str.Format("%d", intValue);


For c null terminated strings use:

char str[50];
_snprintf(str, 50, "%.1f", floatValue);
_snprintf(str, 50, "%d", intValue);


sprintf can also be used in the last example but it is less safe than _snprintf (it can lead to buffer overruns with the supplied buffer isn't large enough)

Graham

Librarians rule, Ook!

GeneralRe: number and string Pin
sofia_1117-Jun-08 10:58
sofia_1117-Jun-08 10:58 
GeneralRe: number and string Pin
Graham Shanks7-Jun-08 11:11
Graham Shanks7-Jun-08 11:11 
GeneralRe: number and string [modified] Pin
sofia_1117-Jun-08 20:55
sofia_1117-Jun-08 20:55 
QuestionRe: number and string Pin
David Crow7-Jun-08 14:32
David Crow7-Jun-08 14:32 
AnswerRe: number and string Pin
sofia_1117-Jun-08 21:15
sofia_1117-Jun-08 21:15 
GeneralRe: number and string Pin
toxcct8-Jun-08 22:36
toxcct8-Jun-08 22:36 
QuestionProgram to Code Pin
Pathetic7-Jun-08 6:21
Pathetic7-Jun-08 6:21 
AnswerRe: Program to Code Pin
Michael Schubert7-Jun-08 6:43
Michael Schubert7-Jun-08 6:43 
GeneralRe: Program to Code Pin
Pathetic8-Jun-08 4:09
Pathetic8-Jun-08 4:09 
AnswerRe: Program to Code Pin
CPallini7-Jun-08 7:00
mveCPallini7-Jun-08 7:00 
AnswerRe: Program to Code Pin
sudhir_Kumar8-Jun-08 0:10
sudhir_Kumar8-Jun-08 0:10 
GeneralRe: Program to Code Pin
Pathetic8-Jun-08 4:10
Pathetic8-Jun-08 4:10 
Questionbit manupolation Pin
MahaKh7-Jun-08 3:28
MahaKh7-Jun-08 3:28 
QuestionRe: bit manupolation Pin
Michael Schubert7-Jun-08 3:35
Michael Schubert7-Jun-08 3:35 
AnswerRe: bit manupolation Pin
MahaKh7-Jun-08 4:07
MahaKh7-Jun-08 4:07 
GeneralRe: bit manupolation Pin
Michael Schubert7-Jun-08 4:10
Michael Schubert7-Jun-08 4:10 
GeneralRe: bit manupolation Pin
MahaKh7-Jun-08 4:36
MahaKh7-Jun-08 4:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.