struct ast_channel *(* const requester)(const char *type, int format, void *data, int *cause);
Run Code Online (Sandbox Code Playgroud)
这条线的意义是什么?
第二个问题:使用的优点是什么
static struct hello
{
int a;
chat b;
};
Run Code Online (Sandbox Code Playgroud)
简单地说
struct hello
{
int a;
};
Run Code Online (Sandbox Code Playgroud)
另外,static char p[]和之间有什么区别char p[];?