What is a C array and illustrate the how is it different from a list.
Answer / rutuja pawar
Suppose,
int arr[5]={10,20,30,40,50};
I want to add value at index first 60,so array will change like that
arr[5]={10,60,20,30,40,50};
for this output I have to shift the array element.
but in List I can insert directly and delete directly.
that means:
1) In Array: Insertion and deletion is not faster , but Accessing time is less
2)In List: Insertion and deletion is faster but accessing time is more.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
write a program to sort the elements in a given array in c language
How do you redirect a standard stream?
How can I write functions that take a variable number of arguments?
write a c programme for add of two numbers with out use of arthematic operators
who developed c and why he developed c?
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
How can I recover the file name given an open stream or file descriptor?
Write a factorial program using C.
Write a code on reverse string and its complexity.
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
What does p mean in physics?