C语言 记录一段神奇的代码 void(*)()
在线c语言平台:
https://www.onlinegdb.com/online_c_compiler
代码如下:
#include <stdio.h>
int* sub(int a,int b)
{
int *p = a+b;
return p;
}
int sub_pointer(int a,int b)
{
return a+b;
}
void* sub_another()
{
printf("enter\n");
}
#define MAX
原创
2021-07-09 23:45:53 ·
454 阅读 ·
2 评论