Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 / guna

java and c#

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is null a keyword in c?

1159


How can you return multiple values from a function?

1075


What is the difference between procedural and functional programming?

1033


What is memcpy() function?

1068


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

1290


How do you sort filenames in a directory?

1135


How can I automatically locate a programs configuration files in the same directory as the executable?

1125


program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)

2067


What are reserved words?

1062


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

2172


What is define c?

1024


Why can’t constant values be used to define an array’s initial size?

1338


What are qualifiers in c?

999


What are the rules for the identifier?

1121


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2281