write a program for the normal snake games find in most of
the mobiles.
No Answer is Posted For this Question
Be the First to Post Answer
Is main is user defined function?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
0 Answers College School Exams Tests,
What is substring in c?
What is pointer to pointer in c language?
What are volatile variables in c?
write a program in c language to print your bio-data on the screen by using functions.
what is software?
How can I implement sets or arrays of bits?
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 ].
What are the advantages of using linked list for tree construction?
What is type qualifiers?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }