what is the difference between call by value and call by
reference?
Answer Posted / rama krishna sidhartha
Call by value means passing the values.
Call by reference means passing the address of the variables
given.
Is This Answer Correct ? | 7 Yes | 2 No |
Post New Answer View All Answers
What are structure members?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Explain how can I write functions that take a variable number of arguments?
Explain how do you search data in a data file using random access method?
Explain about the functions strcat() and strcmp()?
What are pointers really good for, anyway?
Who developed c language and when?
Explain how many levels deep can include files be nested?
How to establish connection with oracle database software from c language?
what is stack , heap ,code segment,and data segment
List some of the static data structures in C?
What is register variable in c language?
define string ?
Explain the difference between malloc() and calloc() function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }