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 is the most efficient way to count the number of bits which are set in an integer?
The difference between printf and fprintf is ?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Program to find largest of three numbers without using comparsion operator?
write a program in c to read array check element is present or not?
What does %p mean?
WHAT IS HIGH LEVEL LANGUAGE?
Explain which function in c can be used to append a string to another string?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
read a number & print all its devisors using c-program?
How can I call a function, given its name as a string?
Write a program for Overriding.