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
Explain what are its uses in c programming?
What is difference between static and global variable in c?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
What are identifiers in c?
Why cant I open a file by its explicit path?
main() { float a=3.2e40; printf("%d",a); }
Why do we use stdio h and conio h?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
how to print 212 as Twohundreds twelve plz provide me ans soon
Suggesting that there can be 62 seconds in a minute?
What is the mean of function?
Is this program statement valid? INT = 10.50;