Which driver is a pure java driver


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

Post New Answer

More C Interview Questions

inline function is there in c language?

4 Answers  


What are different types of operators?

0 Answers  


Is c an object oriented programming language?

1 Answers  


What is typedef example?

0 Answers  


In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?

4 Answers  






what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }

7 Answers  


What are the commands should be given before weiting C Program i.e, Cd.. like

4 Answers   IBM, Infonet, Satyam, Tech Mahindra,


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


Explain modulus operator. What are the restrictions of a modulus operator?

0 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,


Why do some versions of toupper act strangely if given an upper-case letter?

0 Answers  


write a program to find lcm and hcf of two numbers??

1 Answers  


Categories