largest Of three Number using without if condition?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What does c value mean?

0 Answers  


write a c program for swapping two strings using pointer

0 Answers  


Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

0 Answers   TCS,


Tell me when would you use a pointer to a function?

0 Answers  


What is the difference between static and global variables?

1 Answers  






10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


How to Throw some light on the splay trees?

0 Answers  


what is bitwise operator?

1 Answers   IBM,


Can anyone tell what is stack overflow? what precaution we should take?

1 Answers  


#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }

0 Answers   Wilco,


Is it acceptable to declare/define a variable in a c header?

0 Answers  


FIND THE OUTPUT IF THE INPUT IS 5 5.75 void main() { int i=1; float f=2.25; scanf("%d%f",&i,&f); printf("%d %f",,i,f); } ANSWER IS 5 AND 2.25 WHY?

4 Answers   Wipro,


Categories