What is the difference between formatted&unformatted i/o functions?


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

Post New Answer

More C Interview Questions

Is linux written in c?

0 Answers  


Explain the difference between ++u and u++?

0 Answers  


Explain what is gets() function?

0 Answers  


write a c program to accept a given integer value and print its value in words

4 Answers   Vernalis, Vernalis Systems,


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  






How can I run c program?

0 Answers  


write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)

10 Answers  


without using control structures and control structures find the max and min of given 2 nos

1 Answers   HCL,


can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?

2 Answers  


how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...

1 Answers   Infosys,


WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****

2 Answers  


how we do lcm of two no using c simple if while or for statement

1 Answers  


Categories