Answer Posted / hrpynux@gmail.com
The call by reference method of passing arguments to a function copies the address of an argument into the formal parameter. ... It means the changes made to the parameter affect the passed argument. To pass a value by reference, argument pointers are passed to the functions just like any other value.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How a string is stored in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
How can you call a function, given its name as a string?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is meant by 'bit masking'?
Tell me about low level programming languages.
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What are valid operations on pointers?
What is the advantage of an array over individual variables?
What are the applications of c language?
What are examples of structures?
Explain what will the preprocessor do for a program?
What is the difference between arrays and pointers?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?