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


Please Help Members By Posting Answers For Below Questions

What are integer variable, floating-point variable and character variable?

837


What is the most efficient way to count the number of bits which are set in an integer?

804


What is a constant and types of constants in c?

831


What oops means?

738


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

888


How can I avoid the abort, retry, fail messages?

849


Can include files be nested?

822


What is the function of volatile in c language?

862


How do you use a pointer to a function?

840


When should we use pointers in a c program?

843


What is the difference between text and binary i/o?

762


What is omp_num_threads?

811


When the macros gets expanded?

1058


What are the 5 data types?

768


What is an array? What the different types of arrays in c?

847