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.


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

Post New Answer

More C++ General Interview Questions

How to get the current position of the file pointer?

0 Answers  


Is there a new/delete equivalent of realloc?

1 Answers  


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 is a tuple c++?

0 Answers  


what is Member Functions in Classes?

0 Answers  






Are there any new intrinsic (built-in) data types?

1 Answers  


Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);

0 Answers  


Is linux written in c or c++?

0 Answers  


In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.

5 Answers   GE,


What is a constant reference?

0 Answers  


Differentiate between declaration and definition in C++?

1 Answers  


What is a "Copy Constructor"?

2 Answers  


Categories