Made a C for-loop, and it doesn't get into it. It just skips it entirely, and I don't know why
int main(void) {
  int N = 5;
  int input;
  scanf("%d", &input);
  int c;
  for(c=0; c==N; c++) {
    srand(time(0));
    int random = rand() % 99;
    printf("Loteria: %d\n", random);
    
    if (input == random) {
      printf("\nAcertou!\n");
    }
  }
  return 0;
}
 
    