what is the difference between : func (int list[], ...) or
func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Answer Posted / guest
in func(int list[]: it gives only the address of the value
which was stored in the list.
func (int *list , ....):it gives the value which is stored
in the list
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What are integer variable, floating-point variable and character variable?
What is the most efficient way to count the number of bits which are set in an integer?
What is a constant and types of constants in c?
What oops means?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
How can I avoid the abort, retry, fail messages?
Can include files be nested?
What is the function of volatile in c language?
How do you use a pointer to a function?
When should we use pointers in a c program?
What is the difference between text and binary i/o?
What is omp_num_threads?
When the macros gets expanded?
What are the 5 data types?
What is an array? What the different types of arrays in c?