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.
Answers were Sorted based on User's Feedback
Answer / karthikeyan
please try to understand the question, they asked you to develop the game
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sunny
read question carefully,they asked u can develop not asked
which language used.
| Is This Answer Correct ? | 4 Yes | 3 No |
difference between native and cross compilers
Can variables be declared anywhere in c?
What is the difference between char array and char pointer?
write a program that print itself even if the source file is deleted?
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
write a c program to store and print name,address,roll.no of a student using structures?
which is an algorithm for sorting in a growing Lexicographic order
while initialization of array why we use a[][2] why not a[2][]...?
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
What is typedef example?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error