D
Dave
Hi all,
I was wondering if when I use the typedef command, I can typedef multiple names.
EX)
typedef struct foo {
foo *next;
foo *prev;
int val;
} nameOne, nameTwo;
Can I now use nameOne and nameTwo interchangeably?
Dave
I was wondering if when I use the typedef command, I can typedef multiple names.
EX)
typedef struct foo {
foo *next;
foo *prev;
int val;
} nameOne, nameTwo;
Can I now use nameOne and nameTwo interchangeably?
Dave