Closed jayjaybillings closed 7 years ago
The signature of main() is incorrect. The proper declaration of main is
int main(int argc, char **argv) // or *argv[]
Also, strRead() should be moved above main() in the file so that the forward declaration can be removed.
The signature of main() is incorrect. The proper declaration of main is
Also, strRead() should be moved above main() in the file so that the forward declaration can be removed.