cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
typedef Vector
typedef Vector
Apr 29, 2011 at 8:07pm UTC
carloshbrandt
(1)
Quick question:
I have the following line in a (pure) *C* code:
typedef DTYPE* Vector;
As far as I know, Vector datatypes does not exist in C. What am I missing? Is there "Vector" datatype in C, or should I look in somewhere else to get to know what is that "Vector"?
Thank you very much, in advance.
[]
Brandt
Apr 29, 2011 at 8:18pm UTC
filipe
(1165)
It's a typedef. That line is defining the name Vector to be an alias to pointers to DTYPE.
Topic archived. No new replies allowed.