【发布时间】:2009-02-19 10:41:44
【问题描述】:
我有一个库,我必须将 (char **)&return_string 传递给函数 hci_scan 如这段摘录所示:
char return_string[250];
int num_hosts;
if ((num_hosts = hci_scan((char **) & return_string, 0x03)) > 0) {
//case where one or more devices are found...
} else {
//case where zero devices are found...
}
执行后,return_string 中的内容是什么? (到目前为止,我得到的只是内存地址)
感谢您的帮助
【问题讨论】: