View Single Post
Old 05-27-2003, 08:29 PM   #9 (permalink)
socomm
Registered User
 
socomm's Avatar
 
Join Date: Apr 2003
Location: Slums of Los Angeles
Posts: 4
socomm is on a distinguished road
Send a message via AIM to socomm
Exclamation

This is an old post but here is a solution I found,
Code:
char *fps = NULL;
int x;

stringstream ss;
ss<<x;
fps = (char *)ss.str( ).c_str( );

cout<<"FPS: "<<fps<<endl;
for future references .
socomm is offline   Reply With Quote