Record Detail

Compile Error

/in/hash.c:78:29: error: implicit declaration of function 'search' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    node* toDelete = (node*)search(dict, size, key);
                            ^
/in/hash.c:78:29: note: did you mean 'bsearch'?
/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h:20:1: note: 'bsearch' declared here
bsearch (const void *__key, const void *__base, size_t __nmemb, size_t __size,
^
/in/hash.c:78:22: error: cast to 'node *' (aka 'struct _node *') from smaller integer type 'int' [-Werror,-Wint-to-pointer-cast]
    node* toDelete = (node*)search(dict, size, key);
                     ^
/in/hash.c:95:7: error: conflicting types for 'search'
void *search(void *hashtable, int size, int key) {
      ^
/in/hash.c:78:29: note: previous implicit declaration is here
    node* toDelete = (node*)search(dict, size, key);
                            ^
3 errors generated.

Information

Submit By
Type
Submission
Problem
l1p2
Homework
l1
Language
C (Clang, with memory check)
Submit At
2023-10-15 22:59:07
Judged At
2023-10-15 22:59:07
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes