Is c++ a low level language?


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

Post New Answer

More C++ General Interview Questions

Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list

0 Answers  


how to create window program in c++.please explain.

1 Answers   Microsoft,


Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c

0 Answers  


Explain what are mutator methods in c++?

0 Answers  


Is c++ harder than java?

0 Answers  






What is a v-table?

0 Answers  


Definition of class?

12 Answers  


What do you mean by friend class & friend function in c++?

0 Answers  


What is dangling pointers?and what is memory leak?

5 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  


What is the use of setfill in c++?

0 Answers  


What are namespaces in c++?

0 Answers  


Categories