摘要: 1 #include 2 #include 3 #include 4 #include 5 6 #define MAX_INT_DIGIT 10 7 8 9 int * getSizeTable(); 10 char* int2str(const int); 11 int power(int, int); 12 int str2int(const char*); 13 14 #define ERROR -1 15 16 17 main() 18 { 19 int n = 1024; 20 char* s = int2str(n); 21 ... 阅读全文
posted @ 2014-02-06 23:06 I return back 阅读(2877) 评论(0) 推荐(0)