What is c++ mutable?
No Answer is Posted For this Question
Be the First to Post Answer
Snake Game: This is normal snake game which you can find in most of the mobiles. You can develop it in Java, C/C++, C# or what ever language you know.
How the compilers arranges the various sections in the executable image?
What is the use of data hiding?
What is the cout in c++?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
How is objective c different from c++?
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\"; } };
Why ctype h is used in c++?
What is a binary file? List the merits and demerits of the binary file usagein C++.
What is an accessor in c++?
What is a responder chain?
Can we run c program in turbo c++?