How does c++ structure differ from c++ class?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the difference between prefix and postfix versions of operator++()?

0 Answers  


If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];

3 Answers  


What is recursion?

0 Answers  


1.what is the difference between software & package &application.

1 Answers   Infosys,


Explain how to initialize a const data member.

0 Answers  






What is split a string in c++?

0 Answers  


What are the two types of comments?

0 Answers  


How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?

2 Answers   CTS,


Explain the static member function.

0 Answers  


Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?

0 Answers   Maxobiz,


What is an Object/Instance?

1 Answers  


Const char *p , char const *p What is the difference between the above two?

0 Answers   TCS,


Categories