#include #include #include #define SIZE 1000 int search0(const unsigned char * t,int start,int end) { int i; for (i=start; i= 0 && i < SIZE) arr[i] = 0; if (search0(arr,0,SIZE-1)) printf("Found !\n"); else printf("Not found !\n"); return EXIT_SUCCESS; }