C passes By value or By reference?
Answer Posted / red dustbin
C passes only by value. When passing a pointer, the pointer
is passed by value. This is equivalent to passing by
reference but it is the progammer's choice to pass the
pointer instead of the object itself.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is the significance of static storage class specifier?
how is the examination pattern?
Do you know what are bitwise shift operators in c programming?
Tell me is null always defined as 0(zero)?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is struct node in c?
Why cant I open a file by its explicit path?
Is null always equal to 0(zero)?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is C language ?
What is realloc in c?
What are the Advantages of using macro
What is identifier in c?
In C programming, what command or code can be used to determine if a number of odd or even?