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 language is windows 1.0 written?
what is reason of your company position's in india no. 1.
what is a function method?give example?
Explain what is a stream?
Why clrscr is used after variable declaration?
What is I ++ in c programming?
What is hash table in c?
What are data types in c language?
Explain how can type-insensitive macros be created?
What are volatile variables in c?
Can i use “int” data type to store the value 32768? Why?
What are inbuilt functions in c?
What is a program flowchart and explain how does it help in writing a program?
Tell us the use of fflush() function in c language?
Compare and contrast compilers from interpreters.