what is the differance between pass by reference and pass
by value.
Answer Posted / vasanth
pass by value :passing the varibles directly into function
augments
pass by reference:
passing the address of the pointer varible
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
Explain how can I manipulate strings of multibyte characters?
Tell me when would you use a pointer to a function?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
Explain how do you convert strings to numbers in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
How can I trap or ignore keyboard interrupts like control-c?
What is wrong with this initialization?
What does volatile do?
How to write a multi-statement macro?
What is the use of getchar() function?
How macro execution is faster than function ?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
What is the difference between malloc calloc and realloc in c?
explain what are actual arguments?
What is getch() function?