Why does my program shows undefined reference, even though I defined the function?
I'm trying to run a function, but gets Undefined reference 'createList'. #include <stdio.h>> #include <stdlib.h> void createList(); struct node{ int classList; struct node *next; }*Node; int main() { struct node *head = NULL; int ...
May 4, 2019C