Answer Posted / rina
function is call the value called the call by values
and the function call the address called the call by
refrence....
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What does volatile do?
What is memory leak in c?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is a structure and why it is used?
What is the significance of scope resolution operator?
What does stand for?
What the different types of arrays in c?
What is the difference between struct and typedef struct in c?
what value is returned to operating system after program execution?
What are the rules for identifiers in c?
What is a null pointer in c?
What is substring in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
Write a program to print all permutations of a given string.