List different attributes in C++?


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

Post New Answer

More C++ General Interview Questions

Which software is best for coding?

0 Answers  


Explain the use of vtable.

0 Answers  


Differentiate between declaration and definition.

0 Answers  


What is near, far and huge pointers? How many bytes are occupied by them?

0 Answers  


What do you mean by late binding?

0 Answers  






Show the declaration for a static member variable.

0 Answers  


What is a dangling pointer in c++?

0 Answers  


What do you mean by call by value and call by reference?

1 Answers  


What does extern mean in a function declaration in c++?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


What is jump statement in C++?

0 Answers   Ericsson,


What is the type of 'this' pointer? When does it get created?

0 Answers  


Categories