What do you mean by global variables?


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

Post New Answer

More C++ General Interview Questions

What is function overriding in c++?

0 Answers  


Write a program to find the reverse Fibonacci series starting from N.

0 Answers   Huawei,


How do you master coding?

0 Answers  


What is the hardest coding language to learn?

0 Answers  


Describe exception handling concept with an example?

0 Answers  






Is c++ a low level language?

0 Answers  


Do you need a main function in c++?

0 Answers  


What is stl containers in c++?

0 Answers  


Is it possible to provide default values while overloading a binary operator?

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  


What is a constant? Explain with an example.

0 Answers  


Explain stack & heap objects?

0 Answers  


Categories