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
Why is this loop always executing once?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is context in c?
What is strcpy() function?
State two uses of pointers in C?
How can I call a function with an argument list built up at run time?
What are the back slash character constants or escape sequence charactersavailable in c?
What are global variables?
What is malloc() function?
What is line in c preprocessor?
Can a function argument have default value?
What are the 5 data types?
What are Macros? What are its advantages and disadvantages?
Describe dynamic data structure in c programming language?
What are the two forms of #include directive?