What is the real difference between arrays and pointers?
Answer Posted / shailesh
u can access arrays by index where pointers are help to pass references to the object
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is || operator and how does it function in a program?
What are different storage class specifiers in c?
How can I manipulate individual bits?
What is a floating point in c?
Explain goto?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is the purpose of main( ) in c language?
What do you mean by dynamic memory allocation in c? What functions are used?
How does free() know explain how much memory to release?
What is the maximum no. of arguments that can be given in a command line in C.?
What is the correct code to have following output in c using nested for loop?
Can i use “int” data type to store the value 32768? Why?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is atoi and atof in c?