How do you determine whether to use a stream function or a low-level function?


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

Post New Answer

More C Interview Questions

What are loops in c?

0 Answers  


application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above

0 Answers  


What are the advantages of external class?

0 Answers  


What are the general description for loop statement and available loop types in c?

0 Answers  


#include <stdio.h> int main() { if ("X" <"x") printf("X smaller than x "); } my question is whats the mistake in this program? find it and please tell me..

3 Answers  






main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


find a number whether it is even or odd without using any control structures and relational operators?

22 Answers   Microsoft, Shashank Private Limited,


Write a routine that prints out a 2-D array in spiral order!

1 Answers   Lucent,


What is indirection?

0 Answers  


Does * p ++ increment p or what it points to?

0 Answers  


What is the difference between typedef and #define?

0 Answers  


Dear Sir, we are required the bubble sorting programs Regs Prem

1 Answers  


Categories