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

Write a program that his output * *** *****

1 Answers  


What is getch () for?

0 Answers  


What does 4d mean in c?

0 Answers  


Why is c so popular?

0 Answers  


c pgm count no of lines , blanks, tabs in a para(File concept)

2 Answers  






What are bit fields? What is their use?

2 Answers   Adobe,


how to print 2-D array using a single for loop?

2 Answers   Mind Tree, TCS, Value Labs,


What is the use of ?

0 Answers  


illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question

0 Answers  


macros and function are related in what aspect? a)recursion b)varying no of arguments c)hypochecking d)type declaration

12 Answers   HCL, Infosys, Microsoft,


what is a function method?give example?

0 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


Categories