[enter image description here][1]I have a function void readline()
which output a string, and I want to pass it into another function as a parameter, how can I do that,
Thanks for any help.
int scorecount(argc1, argv1, void readline());
void readline();
int main(int argc, char *argv[]){
scorecount(argc,argv);
}
int scorecount(argc1, argv1, void readline()){
output a int
and I want to use the string from readline function somewhere in
scorecount
}
void readline(){
output a string
}