Is there structure in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of using const reference arguments in a function?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
How is memory managed in C++?
How the keyword struct is different from the keyword class in c++?
Do you know the use of vtable?
What is private inheritance?
What is the full form of dos?
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 )?
How can a '::' operator be used as unary operator?
What is a namespace in c++?
What is flush () in c++?
structure contains int, char, float how it behaves for big endian and little endian?