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
Write a pro-gramme to determine whether the number is even or odd?
Is c is a high level language?
What does *p++ do?
Explain what is operator promotion?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
What are the types of operators in c?
how to get the starting address of file stored in harddisk through 'C'program.
Explain how can I open a file so that other programs can update it at the same time?
write a program to delete an item from a particular location of an linear array?
What is the need of structure in c?
Apart from dennis ritchie who the other person who contributed in design of c language.
how can f be used for both float and double arguments in printf? Are not they different types?