What is the real difference between arrays and pointers?
Answer Posted / siddhartha
Arrays allocate the memory space which cannot resized or
reassigned. But in case of pointers the memory size can be
resized
| Is This Answer Correct ? | 42 Yes | 8 No |
Post New Answer View All Answers
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
Tell us the use of fflush() function in c language?
Why is struct padding needed?
How to declare a variable?
Is it fine to write void main () or main () in c?
How pointers are declared?
What is the use of getchar() function?
What is the difference between malloc() and calloc() function in c language?
How do we print only part of a string in c?
What does c value mean?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What does %2f mean in c?
explain what is fifo?
how to write a c program to print list of fruits in alpabetical order?
What is the use of static variable in c?