我有一個函數void readline()
,它輸出一個字符串,我想將它作爲一個函數傳遞給另一個函數參數,我該怎麼做,如何將void函數(void)作爲參數傳遞給另一個函數c
感謝您的任何幫助。
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
}
你需要表現出更多的代碼,你的問題不清楚,因爲它站在這裏。或者你可能需要閱讀你的C文本書。 –
你是說readline會給你輸出字符串,你想傳遞給另一個函數,那個readline函數的返回類型應該是「string」 –
也許你想[GNU readline](http://cnswww.cns.cwru。 edu/php/chet/readline/rltop.html)但它不會返回一個'void' –