Plz See
#include<stdio.h>
#define TOTAL_ELEMENTS (sizeof(array) / sizeof(array[0]))
int array[] = {23,34,12,17,204,99,16};
int main()
{
if(-1<= (TOTAL_ELEMENTS-2) )
printf("%s","gotcha\n");
else
printf("%s","oops\n");
return 0;
}
why is it printing oops