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
What is the use of the function in c?
Compare and contrast compilers from interpreters.
What are the advantages of using Unions?
What is the use of typedef in structure in c?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
how we can say java is platform independent, while we require JVM for that particular Operating System?
Derive the complexity expression for AVL tree?
what is the main use of c where it can use the c
Can stdout be forced to print somewhere other than the screen?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
Why we write conio h in c?