user-defined data type

  • CPP tutorialsEnumeration in C++

    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 tutorialsC++ Unions

    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 »
Back to top button