What is the real difference between arrays and pointers?
Answer Posted / tapan
Array is slow compare to pointer
| Is This Answer Correct ? | 46 Yes | 16 No |
Post New Answer View All Answers
a value that does not change during program execution a) variabe b) argument c) parameter d) none
What is a file descriptor in c?
Write a program to print “hello world” without using semicolon?
Explain how can you determine the size of an allocated portion of memory?
What is the ANSI C Standard?
What is a union?
Why we use int main and void main?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Is linux written in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Add Two Numbers Without Using the Addition Operator
What is the use of pointers in C?
List some of the dynamic data structures in C?
How can I change the size of the dynamically allocated array?