typedef int *a,*b,*c
时间: 2023-05-29 09:05:48 浏览: 98
C语言-typedef的用法
This code defines three pointers to integers, named `a`, `b`, and `c`.
It is equivalent to writing:
```
typedef int *a;
typedef int *b;
typedef int *c;
```
This allows you to declare variables of type `a`, `b`, or `c` as pointers to integers. For example:
```
a ptr1;
b ptr2;
c ptr3;
```
All three of these variables would be pointers to integers.
阅读全文