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
How to write a code for reverse of string without using string functions?
Tell us bitwise shift operators?
What is the difference between variable declaration and variable definition in c?
What is the use of bitwise operator?
What is bss in c?
Is it better to use a macro or a function?
What are void pointers in c?
How can you read a directory in a C program?
What is the use of pointers in C?
What are qualifiers and modifiers c?
Can we declare a function inside a function in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What are the types of pointers?
What are the usage of pointer in c?
Is main a keyword in c?