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.
Answer Posted / govardhanudu gajula
0.54 seconds
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is the best way to store flag values in a program?
Explain how can you tell whether a program was compiled using c versus c++?
What are the advantages of Macro over function?
What will be your course of action for a push operation?
What is the difference between the local variable and global variable in c?
What do you understand by normalization of pointers?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
I have a varargs function which accepts a float parameter?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is %lu in c?
When should the volatile modifier be used?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
What is an expression?
What is the general form of #line preprocessor?