What is the real difference between arrays and pointers?
Answer Posted / bhavani.p
Array is slow,array refer data in memory location.
Pointer is fast,pointer refer address to the memory location....
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Which node is more powerful and can handle local information processing or graphics processing?
What is c language & why it is used?
Without Computer networks, Computers will be half the use. Comment.
What is difference between union and structure in c?
Is python a c language?
What is sizeof in c?
How can I remove the leading spaces from a string?
What are types of structure?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is meant by preprocessor in c?
What is the use of bitwise operator?
Explain how do you use a pointer to a function?
Can we declare a function inside a function in c?
How does selection sort work in c?