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
Difference between Shallow copy and Deep copy?
Can include files be nested? How many levels deep can include files be nested?
What is modeling?
What is difference between far and near pointers?
What is a rvalue?
Differentiate between the expression “++a” and “a++”?
Why are all header files not declared in every c program?
List the variables are used for writing doubly linked list program.
How do I use void main?
Subtract Two Number Without Using Subtraction Operator
I need previous papers of CSC.......plz help out by posting them.......
What is d scanf?
what is the function of pragma directive in c?
Why is a semicolon (;) put at the end of every program statement?
When should the register modifier be used? Does it really help?