Why ordinary variable store only one value
No Answer is Posted For this Question
Be the First to Post Answer
Is main a keyword in c?
character array A[12] can hold
How can I allocate arrays or structures bigger than 64K?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
Write a program to print the prime numbers from 1 to 100?
What do you mean by c?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
why programming language C is still used in operating system's kernel??
What is difference between Structure and Unions?
Explain the difference between ++u and u++?
Explain what header files do I need in order to define the standard library functions I use?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?