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 is the difference between malloc() and calloc() function in c language?
How reliable are floating-point comparisons?
What are the modifiers available in c programming language?
Whats s or c mean?
What is static volatile in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is the advantage of a random access file?
What is graph in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
I have a varargs function which accepts a float parameter?
how do you execute a c program in unix.
How would you use the functions fseek(), freed(), fwrite() and ftell()?
What does %2f mean in c?
How do I send escape sequences to control a terminal or other device?
What is a pointer variable in c language?