Ish Rattan wrote:
> 
> Write a C-function to do that.
> 
> hth

OK

#include <strstream>

string LongLongToString (long long Number)
{
  strstream Stream;
  Stream << Number;
  return (Stream.str());
}

With some help from comp.lang.c++. You like it?. :-)
-- 
Ivan Martinez (Rodriguez)
Bch in Computer Science - MSc student
http://www.student.dtu.dk/~u990873
"Got fabes?"
-- [rtl] ---
To unsubscribe:
echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR
echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED]
---
For more information on Real-Time Linux see:
http://www.rtlinux.org/~rtlinux/

Reply via email to