c语言特殊语法(六)typeof的用法
操作方法
- 01
typeof是获取变量的类型。具体使用看看下面的代码你就懂了。#include <stdio.h> struct _struct_t{}struct_t;void fun(){ printf("OK ");}int main(int argc,char *argv[]){ int a; char b; void (*p)(void); typeo
赞 (0)
typeof是获取变量的类型。具体使用看看下面的代码你就懂了。#include <stdio.h> struct _struct_t{}struct_t;void fun(){ printf("OK ");}int main(int argc,char *argv[]){ int a; char b; void (*p)(void); typeo