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

Post New Answer

More C Interview Questions

What is the purpose of macro in C language?

0 Answers   Fidelity,


Explain the difference between struct and union.

2 Answers  


if p is a string contained in a string?

0 Answers  


what is the role you expect in software industry?

2 Answers   HCL, Wipro,


write a program to check whether a given integer is a strong number or not? [Hint: 145=1!+4!+5! =1+24+120 =145]

7 Answers   Calsoft,






Explain the use of function toupper() with and example code?

0 Answers  


What's the right way to use errno?

0 Answers  


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

0 Answers  


What is wrong with this initialization?

0 Answers  


what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }

6 Answers  


Explain how can you tell whether two strings are the same?

0 Answers  


How do shell structures work?

0 Answers  


Categories