Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d
",myvar);What will be printed
a) 3
b) 5
c) 8
d) symbol
No Answer is Posted For this Question
Be the First to Post Answer
how 2 compile & execute c program with out using editor?
What is the use of header?
what is c?
What is the difference between arrays and pointers?
how to set Nth bit of variable by using MACRO
How can I insert or delete a line (or record) in the middle of a file?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
what is software?
Is a house a shell structure?
What is ambagious result in C? explain with an example.
What does extern mean in a function declaration?
Is null valid for pointers to functions?