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
Which is the memory area not included in C program? give the reason
What are formal parameters?
Can we use visual studio for c?
in linking some of os executables are linking name some of them
Can you define which header file to include at compile time?
Explain what’s a signal? Explain what do I use signals for?
Once I have used freopen, how can I get the original stdout (or stdin) back?
Process by which one bit pattern in to another by bit wise operation is?
How pointers are declared?
Tell us two differences between new () and malloc ()?
given post order,in order construct the corresponding binary tree
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
How can I remove the leading spaces from a string?
Tell me with an example the self-referential structure?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?