what is the differance between pass by reference and pass
by value.
Answer Posted / vijaya
in pass by value only the actual value of a variable is
copied to a formal parameter & it doesn't effects the
actual value when any operations r done on it
where
in pass by refference we r sending address of variables it
gives exact results but any oprations done on it may effect
actual values
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()
Write a program to print "hello world" without using a semicolon?
How can I generate floating-point random numbers?
What is meant by gets in c?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Why are algorithms important in c program?
write a c program for swapping two strings using pointer
What is the acronym for ansi?
What do you mean by dynamic memory allocation in c? What functions are used?
How can you allocate arrays or structures bigger than 64K?
Explain how can I manipulate strings of multibyte characters?
What is the advantage of using #define to declare a constant?
How can I do serial ("comm") port I/O?
What is typedef example?
Explain how can I convert a string to a number?