#include "others.h" int tabcmp(const char** tab, int size, char* string){ for(int i=0; i= 0) { do{ *--p = '0' + (i % 10); i /= 10; }while (i != 0); return p; }else { do { *--p = '0' - (i % 10); i /= 10; }while (i != 0); *--p = '-'; } return p; }