#include #include #include #include #define NBIG 100000000 //10^8 void tic(); void toc(); time_t time_last; int main() { int i, k; unsigned char *uctable; unsigned short *ustable; unsigned int *uitable; float *ftable; uctable = (unsigned char *)malloc(NBIG * sizeof(char)); ustable = (unsigned short *)malloc(NBIG * sizeof(short)); uitable = (unsigned int *)malloc(NBIG * sizeof(int)); ftable = (float *)malloc(NBIG * sizeof(float)); //INIT uctable[0] = (unsigned char)255; ustable[0] = (unsigned short)65536; uitable[0] = (unsigned int)NBIG; ftable[0] = (float)NBIG; k=NBIG; for(i=1 ; i