The difference between printf and fprintf is ?


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

Post New Answer

More C Interview Questions

What does %d do in c?

0 Answers  


write a program for 7*8 = 56 ? without using * multiply operator ? output = 56

6 Answers   Xavient,


How can you restore a redirected standard stream?

0 Answers  


64/square(4)

1 Answers  


what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


what is a void pointer?

2 Answers  


how to copy a string without using c function

5 Answers  


exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above

0 Answers  


Is exit(status) truly equivalent to returning the same status from main?

0 Answers  


Explain function?

0 Answers  


Explain what is the difference between a string and an array?

0 Answers  


how to add numbers without using arithmetic operators.

14 Answers   TCS,


Categories