#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Go to the source code of this file.
Functions | |
void | main () |
|
Definition at line 6 of file ulltest.cpp. 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 } |