Array base access faster or pointer base access is faster?


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 equal to (==) and assignment operator (=)?

0 Answers  


What is the difference between the indirection operator and the address of oper-ator?

0 Answers  


What are inline functions?

2 Answers   Fidelity, Verizon,


What is a character in c++?

0 Answers  


What are the static members and static member functions?

1 Answers  






What is a syntax in c++?

0 Answers  


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

2 Answers   CTS,


describe private access specifiers?

0 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


When do we run a shell in the unix system?

0 Answers  


why we cant create array of refrences

4 Answers  


What is the sequence of destruction of local objects?

0 Answers  


Categories