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


Please Help Members By Posting Answers For Below Questions

What are structure members?

678


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

2312


Explain how can I write functions that take a variable number of arguments?

691


Explain how do you search data in a data file using random access method?

779


Explain about the functions strcat() and strcmp()?

691






What are pointers really good for, anyway?

712


Who developed c language and when?

700


Explain how many levels deep can include files be nested?

714


How to establish connection with oracle database software from c language?

1762


what is stack , heap ,code segment,and data segment

2322


List some of the static data structures in C?

855


What is register variable in c language?

698


define string ?

762


Explain the difference between malloc() and calloc() function?

684


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

821