Answer Posted / vignesh1988i
an array ia an homogenous collections of same data types
which occupies continues memory locations .......
| Is This Answer Correct ? | 166 Yes | 31 No |
Post New Answer View All Answers
What is an identifier?
What does c in a circle mean?
What is volatile keyword in c?
Is fortran faster than c?
What is a rvalue?
What is 2c dna?
How do we declare variables in c?
Explain how do you view the path?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Can a variable be both constant and volatile?
Hi can anyone tell what is a start up code?
What is the difference between single charater constant and string constant?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What does the error 'Null Pointer Assignment' mean and what causes this error?
What does static variable mean in c?