5
5
code:
#include <stdio.h>
#include <stdlib.h>
if (index == -1) {
printf("Key %d not found in the table.\n", key);
return;
}
int main() {
HashTable ht;
initHashTable(&ht);
display(&ht);
// Deleting a key
delete(&ht, 25);
display(&ht);
return 0;
}