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
Is null a keyword in c?
How can you return multiple values from a function?
What is the difference between procedural and functional programming?
What is memcpy() function?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
How do you sort filenames in a directory?
How can I automatically locate a programs configuration files in the same directory as the executable?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What are reserved words?
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.
What is define c?
Why can’t constant values be used to define an array’s initial size?
What are qualifiers in c?
What are the rules for the identifier?
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(); }