Differentiate between an array and a list?


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

Post New Answer

More C++ General Interview Questions

How c functions prevents rework and therefore saves the programers time as wel as length of the code ?

0 Answers  


class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4

4 Answers   Quark,


What is the c++ programming language used for?

0 Answers  


What are the differences between java and c++?

0 Answers  


Using a smart pointer can we iterate through a container?

0 Answers  






What are punctuators in c++?

0 Answers  


What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?

6 Answers   HCL, Integra, IPMC, ORG,


Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];

4 Answers   Quark,


What does scope resolution operator do?

0 Answers  


What causes a runtime error c++?

0 Answers  


What are c++ redistributables?

0 Answers  


What information can an exception contain?

0 Answers  


Categories