0
True or false
C++ allows programmers to create their own data types. Perhaps the simplest method for doing so is via an enumerated type.
2 ответов
+ 7
True....
It's
typedef.....
Or another ways idk
+ 5
True
Classes are user-defined data types, and so are structures, arrays, etc...
But, typedef only allows one to create an alias for a data type, and so, the types are just the same...