00001 #include <stdio.h> 00002 #include <stdlib.h> 00003 #include <string.h> 00004 00005 00006 void main() 00007 { 00008 unsigned long long int x =24; 00009 char* buf = new char[10]; 00010 char* n = NULL; 00011 buf = ulltostr ( x, buf + 10); 00012 printf("%s\n",buf); 00013 } 00014 00015 00016