user-defined data type
-
CPP tutorials
Enumeration in C++
In C++, enumeration is a user-defined data type that consists of a set of named integer constants. It helps in…
Read More » -
CPP tutorials
C++ Unions
In C++, a union is a user-defined data type that can hold members of different data types. Unlike structures, all…
Read More »