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
with out using main how to execute the program?
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
What is the use of sizeof () in c?
what are the uses of structure?
What is the difference between CV and Resume ?
Is c programming hard?
When should a type cast be used?
What was noalias and what ever happened to it?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
Calculate 1*2*3*____*n using recursive function??
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
What are predefined functions in c?