I know alot of similar questions were asked before but i couldn't find something that would fix this warning i get:
MyIntFunctions.c:19:2: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
Occurs here:
void IntPrint (const void *key) { printf("%d", *(int*)key); // line 19 printf("\t-->\t"); }
and a similar warning:
MyStringFunctions.c:22:2: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration] void StringPrint (const void *key) { printf("%s",(char*)key); //line 22 printf("\t-->\t"); }
I really want to understand what is wrong so i won't do that again in the future.