What are the different data types present in C++?

Answers were Sorted based on User's Feedback



What are the different data types present in C++?..

Answer / hrpynux@gmail.com

Integer.
Character.
Boolean.
Floating Point.
Double Floating Point.
Valueless or Void.
Wide Character.

Is This Answer Correct ?    0 Yes 0 No

What are the different data types present in C++?..

Answer / glibwaresoftsolutions

In C++ interview questions, one common topic is the different data types available. C++ data types are broadly classified into three categories:
• Primitive: Primitive data types include fundamental types like int, float, char, and bool.
• Derived: Derived data types are more complex and include arrays, pointers, and functions.
• User-Defined: User-defined data types, such as classes, structures, and unions, allow programmers to define custom data types.

Is This Answer Correct ?    0 Yes 0 No

What are the different data types present in C++?..

Answer / glibwaresoftsolutions

In C++ interview questions, one common topic is the different data types available. C++ data types are broadly classified into three categories:
• Primitive: Primitive data types include fundamental types like int, float, char, and bool.
• Derived: Derived data types are more complex and include arrays, pointers, and functions.
• User-Defined: User-defined data types, such as classes, structures, and unions, allow programmers to define custom data types.

Is This Answer Correct ?    0 Yes 0 No

What are the different data types present in C++?..

Answer / hr@tgksolutions.com

In C++ interview questions, one common topic is the different data types available. C++ data types are broadly classified into three categories:
• Primitive: Primitive data types include fundamental types like int, float, char, and bool.
• Derived: Derived data types are more complex and include arrays, pointers, and functions.
• User-Defined: User-defined data types, such as classes, structures, and unions, allow programmers to define custom data types.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.

7 Answers   LG, Samsung,


What is namespace & why it is used in c++?

0 Answers  


Why for local variables the memory required to hold the variable is allocated from the program stack and for new its allocated from the heap?

1 Answers  


can anybody please tell me how to write a program in c++,without using semicolon(;)

6 Answers   NIIT,


What is a c++ map?

0 Answers  


What is using namespace std in c++?

0 Answers  


Which coding certification is best?

0 Answers  


Explain how to initialize a const data member.

0 Answers  


given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().

2 Answers  


What is a dynamic binding in c++?

0 Answers  


What is the default width for ouputting a long integer using the insertion operator?

0 Answers  


Does c++ have finally?

0 Answers  


Categories