wat is the difference between array and pointer?
Answer Posted / sanjay gupta
array is the similsr type of data and pointer is a momery location of element...
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is a null pointer in c?
What is pointer to pointer in c language?
Explain what is the difference between a free-standing and a hosted environment?
How many types of operator or there in c?
What are the different types of objects used in c?
Why are algorithms important in c program?
Why we not create function inside function.
What does *p++ do?
Which is best book for data structures in c?
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); } }
Which are low level languages?
How many keywords (reserve words) are in c?
Explain how can you check to see whether a symbol is defined?
Explain what are header files and explain what are its uses in c programming?
Explain how do you determine a file’s attributes?