what is C++ objects?


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

Post New Answer

More C++ General Interview Questions

Is it possible to provide special behavior for one instance of a template but not for other instances?

0 Answers  


What is ostream in c++?

0 Answers  


What is the difference between = and == in C?

20 Answers   Christ University, Intel,


What is the purpose of the "delete" operator?

0 Answers  


How should runtime errors be handled in c++?

0 Answers  


Difference between a homogeneous and a heterogeneous container

0 Answers  


1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v

5 Answers   Quark,


If I is an integer variable, which is faster ++i or i++?

0 Answers  


How to detect memory leaks in c++

1 Answers   Mphasis,


write a program to add two numbers without using an arithmetic operator.

1 Answers   NIIT,


Is it possible to have a recursive inline function in c++?

0 Answers  


Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)

4 Answers   HTC, TCS,


Categories