Here is the code snippet which does conversion from unsigned long long (uint64) to
string/ascii/char *.
it takes input as unsigned long long (uint64), converts it to string, it takes care of the base also.
example usage of function ulltostr is: ulltostr(1023234343453553, ptr, 10);
here is the code snippet….
#include <stdio.h>
#ifdef _MSC_VER
typedef unsigned __int64 uint64;
#else
typedef unsigned long long uint64
#endif
char *ulltostr(uint64 [...]