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
No Answer is Posted For this Question
Be the First to Post Answer
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We.....Are....Student “ Note: one .=1 Space Output: "We Are Student"
How many parameters should a function have?
C program to read the integer and calculate sum and average using single dimensional array
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is pointer to pointer in c language?
What are local variables c?
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Is null always defined as 0(zero)?
How can I convert a number to a string?
provide an example of the Group by clause, when would you use this clause
What does %p mean c?
What's the difference between calloc() and malloc()?