write a program for the normal snake games find in most of
the mobiles.
What is #define used for in c?
How does #define work?
code for replace tabs with equivalent number of blanks
What are dangling pointers?
Is c++ based on c?
what is the use of operator ^ in C ? and how it works?
What does typedef struct mean?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
What is volatile c?
when i declare as: void main() { clrscr(); int a=10; printf("%d",a) } my problem that why generate a error in above programs. please tell me answer seriously .
Why we use int main and void main?
Explain what does the function toupper() do?